body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Playfair Display', Adorage;
  background: #EDE6E0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* HEADER */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
  z-index: 999;
}
@font-face {
  font-family: 'Adorage';
  src: url('fonts/Adorage.ttf') format('truetype');
}

body {
  font-family: 'Adorage', sans-serif;
}


.main-header.visible {
  opacity: 1;
  pointer-events: auto;
}

.header-left {
  font-size: 1.8rem;
  font-weight: bold;
}

.header-center {
  font-size: 1.1rem;
  font-weight: 500;
  color: #444;
  text-align: center;
  flex-grow: 1;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EDE6E0;
  overflow: hidden;
  padding-top: 80px; /* avoid header overlap */
}

/* OPELIA ZOOM-IN TEXT */
.opelia-text {
  font-size: 4rem;
  display: flex;
  gap: 8px;
  transform: scale(0.2);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  z-index: 2;
}

.opelia-text.scale-in {
  transform: scale(1);
  opacity: 1;
}

.opelia-text span {
  display: inline-block;
  transition: transform 0.5s ease, opacity 1s ease;
}

.slide-left {
  transform: translateX(-150vw);
  opacity: 0;
}

.slide-right {
  transform: translateX(150vw);
  opacity: 0;
}

/* FADE IN LOGO IMAGE */
.logo-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  opacity: 0;
  transition: opacity 2s ease;
  z-index: 1;
  background-color: #fff;
}

.fade-expand {
  opacity: 1;
}

/* BRAND STORY SECTION */
.brand-story {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(237, 230, 224, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.story-text {
  text-align: center;
  max-width: 700px;
  color: #333;
  padding: 20px;
  font-family: 'Playfair Display', serif;
}

.story-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Playfair Display', serif;
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
  .opelia-text {
    font-size: 2.5rem;
  }

  .logo-image {
    object-fit: contain;
    height: 100vh;
  }

  .main-header {
    flex-direction: column;
    align-items: center;
    padding: 15px;
    gap: 10px;
  }

  .header-left {
    font-size: 1.5rem;
  }

  .header-center {
    font-size: 1rem;
  }

  .social-icon {
    width: 18px;
    height: 18px;
  }
}
.inline-icons {
  margin-left: 12px;
  display: inline-flex;
  gap: 10px;
  vertical-align: middle;
}
.coming-soon {
  position: relative;
  height: 100vh;
  background-image: url("media/opelia2.jpg"); /* <- use opelia2 if different name */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(237, 230, 224, 0.75); /* muted overlay tone */
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-text {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #222;
  padding: 20px;
  max-width: 700px;
}

.coming-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.coming-text p {
  font-size: 1.3rem;
  line-height: 1.6;
}
.newsletter {
  background-color: #f9f6f2;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  font-family: 'Playfair Display', serif;
}

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.newsletter-content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}


.newsletter-form button {
  background-color: #000;
  color: #fff;
  padding: 12px 16px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #333;
}









