.logo-group {
  display: flex;
  align-items: center;
  gap: 50px; /* SAME AS PRODUCT PAGE */
}

.logo-flower {
  width: 95px;
  height: auto;
  transform: scale(1.3); /* matches wordmark scale visually */
  transform-origin: center;
}

.brand-wordmark {
  height: 50px;
  width: auto;
  transform: scale(5); /* your chosen zoom */
  transform-origin: center; /* SAME AS PRODUCT PAGE */
}
  

 /* =========================
           HERO
        ========================== */
        .hero {
            width: 100%;
            height: 100vh;
            background-image: url('../images/mainpage.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(90, 0, 40, 0.65);
            z-index: 1;
            animation: overlayZoom 12s ease-out forwards;
        }


        .hero-text .btn {
            padding: 12px 28px;
            background-color: #6a1f2b;
            color: #F7EEDB;
            border: none;
            font-size: 16px;
            cursor: pointer;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            animation-delay: 0.8s;
        }

        .hero-text .btn:hover {
            background-color: #d4af37;
            color: #3a2f2a;
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
        }
 .hero-text {
            position: relative;
            z-index: 2;
            max-width: 650px;
            width: 100%;
            margin: 0 auto;
        }

        .hero-text h5,
        .hero-text h1,
        .hero-text p,
        .hero-text .btn {
            opacity: 0;
            animation: fadeUp 1s ease-out forwards;
            color: #B8962E;
        }

        .hero-text h5 { animation-delay: 0.2s; color: #B8962E; }
        .hero-text h1 { animation-delay: 0.4s; color: #B8962E; }
        .hero-text p  { animation-delay: 0.6s; color: #B8962E; }

.hero-text h1 {
    font-family: "Playfair Display", cursive;
    font-size: 4rem;
    letter-spacing: 1px;
color: #F8F3E6;
}

.hero-text h2 {
    font-family: "Playfair Display", cursive;
    font-size: 2rem;
    font-style: italic;
    letter-spacing: 2px;
    font-weight: 600; /* elegant, not too heavy */
color: #F8F3E6;

}
 .logo-row {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 28px;

  background: transparent;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  border: none;
  box-shadow: none;
}

    /* =========================
           COLLECTIONS
        ========================== */
        .collections {
            padding: 50px 20px;
            text-align: center;
        }

        .collections h2 {
            font-family: 'Playfair Display', serif;
            color: #5c0016;
            font-size: 4rem;
            font-style: italic;
            letter-spacing: 3px;
        }

        .collections .underline {
            width: 40px;
            height: 3px;
            background-color: #c6a77b;
            margin: 0 auto 50px;
        }

        .collection-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 4 in one row */
            gap: 24px;
            margin: 0 auto;
    	    justify-items: center; /* centers horizontally */
    	    align-items: start;    /* prevents vertical drift */
        }

        .collection-item {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(6px);
            border-radius: 8px;
            opacity: 0;
            padding: 0px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
    	    display: block;
    	    text-decoration: none;
    	    color: inherit;
	    width: 100%;   /* ensures the card fills the column */
  	    max-width: none; /* optional: keeps cards consistent */
            box-sizing: border-box;
        } 

        .collection-item.visible {
            animation: fadeInUp 1s ease-out forwards;
            opacity: 1;
        }

        .collection-item img {
            width: 90%;
            height: 90%; /* smaller images */
            max-height: 360px;
            object-fit: cover;
            display: block;
            margin: 0 auto;
            padding: 20px;
            /* background: #fff;*/
        }

        .collection-item h3 {
            margin-top: 12px;
            font-size: 22px;
            font-family: 'Montserrat', serif;
            color: #5c0016;
            font-style: italic;
        }


	.collection-item h3,
	.collection-item p {
	    text-align: center;
	}


	.collection-item:hover {
	    transform: translateY(-6px);
	    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
	}

        /* =========================
           PHILOSOPHY --- Now Our Story
        ========================== */
        .philosophy {
            padding: 0px 20px;
            text-align: center;
        }

        .philosophy h2 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-style: italic;
            letter-spacing: 3px;
            color: #5c0016;
        }

        .philosophy-grid {
            margin-top: 60px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .philosophy-item {
            background: rgba(255,255,255,0.75);
            backdrop-filter: blur(6px);
            padding: 20px;
            border-radius: 12px;
        }

        .philosophy-item img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-radius: 10px;
        }

        .philosophy-item h3 {
            margin-top: 18px;
            font-size: 24px;
            color: #5c0016;
            font-family: 'Montserrat', serif;
        }

	.philosophy-item h3,
	.philosophy-item p {
	    text-align: center;
	}
       @keyframes overlayZoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.12); }
        }
        


.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #F8F3E6;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.7px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #d4af37;
}

.scroll-banner {
    display: inline-block;
    padding: 22px 50px;
    background: #f8f3e6; /* golden white parchment */
    border: 3px solid #d4af37; /* gold border */
    border-radius: 12px;
    font-family: "Montserrat", serif;
    font-size: 2rem;
    color: #5c0016;
    position: relative;
    text-decoration: none;
    letter-spacing: 2px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Rolled scroll edges */
.scroll-banner::before,
.scroll-banner::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #f8f3e6;
    border: 3px solid #d4af37;
    border-radius: 50%;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.15);
}

.scroll-banner::before {
    left: -25px;
}

.scroll-banner::after {
    right: -25px;
}

.scroll-banner {
    display: inline-block;
    padding: 26px 60px;
    background: #f8f3e6; /* golden white parchment */
    border: 6px solid #d4af37; /* thick gold border */
    border-radius: 14px;
    font-family: "Playfair Display", cursive;
    font-size: 2.2rem;
    color: #5c0016;
    position: relative;
font-style: italic;
    text-decoration: none;
    letter-spacing: 2px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.28);
}

/* Rolled scroll ends with geometric gold lines */
.scroll-banner::before,
.scroll-banner::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #f8f3e6;
    border: 6px solid #d4af37;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.18);

    /* 4 thin gold lines (diamond geometry) */
    background-image:
        linear-gradient(#d4af37 2px, transparent 2px),        /* vertical */
        linear-gradient(90deg, #d4af37 2px, transparent 2px), /* horizontal */
        linear-gradient(45deg, #d4af37 2px, transparent 2px), /* diagonal 1 */
        linear-gradient(-45deg, #d4af37 2px, transparent 2px);/* diagonal 2 */
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.scroll-banner::before {
    left: -32px;
}

.scroll-banner::after {
    right: -32px;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block; /* keeps it aligned with other nav links */
}

/* Main dropdown link */
.dropdown .nav-link {
  color: #F8F3E6;               
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.7px;
  font-weight: 500;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 180px;
  display: none;
  flex-direction: column;
  z-index: 999;
}

/* Dropdown items */
.dropdown-menu a {
  color: #F8F3E6;               
  padding: 10px 20px;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
  display: block;
}

.dropdown-menu a:hover {
  color: #d4af37;               
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: flex;
}

@media (max-width: 768px) {
  body, html {
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  .collection-item img {
    width: 100%;
    padding: 0;
  }

  .collections {
    padding: 60px 16px;
  }
}
@media (max-width: 768px) {
  .philosophy {
    padding: 60px 16px;
  }

  .philosophy-item img {
    height: auto;
  }
}
@media (max-width: 768px) {
  .our-story {
    padding: 60px 16px;
  }
}

/* =========================
   CLEAN MOBILE HEADER + NAV
========================= */
@media (max-width: 768px) {

  /* HEADER CONTAINER */
  .logo-row {
    position: absolute;        /* stop overflow */
    width: 100%; 
    display: flex;
    justify-content: flex-start;   /* center everything */
    align-items: center;
	left: 0;
	top: 0;
    z-index: 1000;
	   padding: 10px 28px;
  background: transparent;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  border: none;
  box-shadow: none;
	    
  }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-text h2 { font-size: 1.2rem; }
  .hero-text p  { font-size: 1rem; }
  /* LOGO FIXES */
  .logo-flower {
    width: 100px;               /* visible, not huge */
    height: 100px;
    transform: none;           /* remove scaling */
  }

  .brand-wordmark {
    height: 35px;              /* readable size */
    width: auto;
  }
.logo-group {
  display: flex;
  align-items: center;
	
}

  /* NAV LINKS FIX */
  .nav-links {
    width: 50%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;      /*      allows wrapping */
    /*gap: 10px;                  small spacing */
    margin-top: 10px;
   
  }

  .nav-links a,
  .dropdown .nav-link,
  .dropdown-menu a {
    font-size: 10px;
  /*  white-space: nowrap;        prevents breaking words */
	  
     font-family: "Montserrat", sans-serif;   /* unify font */
                           /* readable size */
          /* same as desktop */
    color: #F8F3E6;                          /* same as desktop */
    white-space: nowrap; 
  }

  /* GLOBAL OVERFLOW FIX */
  html, body {
    overflow-x: hidden;
  }
	  .scroll-banner {
    font-size: 1.4rem;
    padding: 16px 30px;
    border-width: 4px;
  }

            .story-inner,
            .philosophy-grid,
            .collection-grid {
                grid-template-columns: 1fr;
            }

.dropdown {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
	align-items: center;
}
}

	
