* {
    padding: 0; 
    margin: 0;
    box-sizing: border-box; 
    text-decoration: none;
}

nav {
  position: fixed; 
  top: 0; 
  left: 0;
  width: 100%;
  backdrop-filter: blur(20px); 
  background: rgba(255, 255, 255, 0.25);
  font-family: 'GB Garamond', serif; 
  z-index: 10; 
}

/* Desktop menu links */
.menu a {
  font-weight: lighter; 
  color: #4D1F08; 
  text-decoration: none;
}

/* Mobile hamburger */
.mobile-toggle {
  font-size: 1.8rem;
  color: #4D1F08;
  cursor: pointer;
}

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.95);
  padding: 15px 20px;
  gap: 12px;
}

.mobile-menu a {
  color: #4D1F08;
  text-decoration: none;
  font-size: 1rem;
}

/* Show menu when active */
.mobile-menu.active {
  display: flex;
}

/* Reduce side padding on mobile */
@media (max-width: 768px) {
  nav.px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/*-------------------- Hero----------------- */

/* Existing hero styles stay the same */
#hero {
  padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background: url('/assets/hero-bg.png');
}

.hero-content {
    width: 80%;
}

.hero-bigtext {
    font-family: 'GB Garamond', serif;
    font-size: 5rem; 
    line-height: 90%; 
}

.hero-smalltext {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem; 
    margin: 0;
}

#hero button {
    font-family: 'EB Garamond', serif;  
    font-size: 1.3rem;
    color: #BE531D; 
    width: fit-content; 
    font-weight: 500; 
    border: 1px solid #BE531D; 
    padding: 10px 15px;
}


/* ===== MOBILE RESPONSIVE FIX ===== */

@media (max-width: 992px) {
  .hero-content {
    width: 90%;
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-bigtext {
    font-size: 3.2rem;
    line-height: 100%;
    width: 100% !important;
  }

  .hero-smalltext {
    font-size: 1.2rem;
  }

  #hero button {
    margin: 0 auto;
  }

  /* Hide social vertical line layout on mobile */
  #hero .d-flex.flex-column.align-items-center.justify-content-around {
    flex-direction: row;
    gap: 15px;
  }

  #hero .bg-white {
    display: none; /* remove vertical lines */
  }
}

@media (max-width: 576px) {
  .hero-bigtext {
    font-size: 2.6rem;
  }

  .hero-smalltext {
    font-size: 1rem;
  }
}

/* ------------------Collection---------------------- */

#collection {
    min-height: 130lvh;
}

.collection-header {
    font-family: 'EB Garamond', serif;
    font-size: 4.5rem;
}

.card-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem; 
    font-weight: 500;
}

/* ===== COLLECTION RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  #collection {
    min-height: auto;
    padding: 60px 0;
  }

  .collection-flex {
    flex-direction: column;
    gap: 50px;
  }

  .collection-card img {
    width: 320px;
    max-width: 100%;
  }

  .collection-header {
    font-size: 3.2rem;
    margin-bottom: 40px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .collection-header {
    font-size: 2.6rem;
  }

  .collection-card img {
    width: 280px;
  }

  .card-title {
    font-size: 1.2rem;
  }
}

/* -----------------About-----------------------*/

#about {
    min-height: 100lvh;
}

.about-img-box { 
    border: 2px solid black;
    height: 250px; 
    width: 200px;
}

.about-img2 {
    position: absolute; 
    bottom: 20%; 
    right: 20%;
    width: 130%; 
    height: auto;
}

.about-img1 {
    position: absolute; 
    top: 40%; 
    left: 20%;
    width: 110%; 
    height: auto;
    box-shadow: -15px -15px 30px rgba(0, 0, 0, 0.38);
    border-radius: 20px;
    z-index: 1;
}

.about-text {
    width: 45%;
}

#about header {
    font-size: 4.5rem; 
    font-family: 'GB Garamond', serif;
    color: #4D1F08;
}

.about-desc {
    font-size: 1.5rem; 
    font-family: 'Cormorant Garamond', serif;
    color: #4D1F08;
}

/* ===== ABOUT RESPONSIVE ===== */

@media (max-width: 992px) {
  #about {
    min-height: auto;
    padding: 80px 20px;
  }

  #about > .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .about-text {
    width: 90%;
    text-align: center;
  }

  #about header {
    font-size: 3.2rem;
  }

  .about-desc {
    font-size: 1.2rem;
  }

  /* Center image box on tablet */
  .about-img-box {
    transform: scale(0.9);
  }
}

@media (max-width: 576px) {
  #about header {
    font-size: 2.6rem;
  }

  .about-desc {
    font-size: 1.05rem;
  }

  /* Scale image composition for mobile */
  .about-img-box {
    transform: scale(0.8);
  }
}

/* ------------------Discover--------------------- */

#discover {
    min-height: 110lvh;
}

.discover-subheader {
    color: #151313; 
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
}

#discover header {
    font-family: 'GB Garamond', serif;
    color: #151313;
    font-size: 3rem;
}

.carousel-container {
  position: relative;
}

/* Arrow placement */
.carousel-arrows {
  position: absolute;
  top: -45px;
  right: 80px;
  display: flex;
  gap: 8px;
}

.carousel-arrows button { 
  color: #FFF4E9;
  border: none;
  width: 34px;
  height: 34px;
  cursor: pointer; 
}

.right-arrow {
    background-color: #E8B08A; 
    border-bottom-right-radius: 8px;
}

.left-arrow {
    background-color: #272321; 
    border-top-left-radius: 8px;
}

/* Carousel layout */
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 90%;
  margin: 0 auto;
}

.carousel-card {
  min-width: 300px;
  flex-shrink: 0;
}

.carousel-card img {
  width: 95%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.carousel-card p {
  margin-top: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.carousel-card span {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ===== DISCOVER RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  #discover {
    min-height: auto;
    padding: 60px 0;
  }

  #discover header {
    font-size: 2.4rem;
  }

  .carousel-arrows {
    right: 20px;   /* bring arrows inward on smaller screens */
  }

  .carousel-track {
    width: 95%;
  }

  .carousel-card {
    min-width: 260px;
  }

  .carousel-card img {
    height: 360px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .discover-subheader {
    font-size: 0.75rem;
  }

  #discover header {
    font-size: 2rem;
  }

  .carousel-arrows {
    top: -35px;
    right: 10px;
  }

  .carousel-arrows button {
    width: 30px;
    height: 30px;
  }

  .carousel-card {
    min-width: 230px;
  }

  .carousel-card img {
    height: 300px;
  }

  .carousel-card p {
    font-size: 0.8rem;
  }
}

/* ----------------Choose-------------- */

#choose {
    min-height: 130lvh;
}

.choose-text {
    width: 40%;
}

.choose-header {
    font-size: 3.5rem; 
    font-family: 'Libre Baskerville', serif;
    color: #4D1F08;
}

.choose-desc {
    color: #4D1F08; 
    font-family: 'Libre Franklin', sans-serif;
}

.choose-subheader {
    font-family: 'Cormorant Garamond', serif; 
    color: #4D1F08; 
    font-size: 1.8rem; 
    font-weight: 500;
}

.choose-subtext {
    color: #4D1F08; 
    font-family: 'Roboto', sans-serif;
}

.choose-img-box { 
    border: 2px solid black;
    height: 500px; 
    width: 350px; 
    margin-right: 80px;
}

.choose-img-box img {
    position: absolute; 
    width: 75%; 
    height: auto;
}

.choose-img1 {
    position: absolute; 
    top: -15%; 
    left: -45%;
    width: 80%; 
    height: auto;
    border-radius: 20px;
    z-index: 1;
}

.choose-img2 {
    position: absolute; 
    top: -20%; 
    right: -15%;
    width: 80%; 
    height: auto;
    border-radius: 20px;
    z-index: 1;
}

.choose-img3 {
    position: absolute; 
    bottom: -20%; 
    left: -45%;
    width: 80%; 
    height: auto;
    border-radius: 20px;
    z-index: 1;
}

.choose-img4 {
    position: absolute; 
    bottom: -35%; 
    right: -15%;
    width: 80%; 
    height: auto;
    border-radius: 20px;
    z-index: 1;
}

/* ===== CHOOSE SECTION RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  #choose {
    min-height: auto;
    padding: 80px 20px;
  }

  #choose > .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .choose-text {
    width: 90%;
    text-align: center;
  }

  .choose-header {
    font-size: 3rem;
  }

  .choose-subheader {
    font-size: 1.5rem;
  }

  .choose-desc,
  .choose-subtext {
    font-size: 1rem;
  }

  /* Center image composition */
  .choose-img-box {
    margin-right: 0;
    transform: scale(0.9);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .choose-header {
    font-size: 2.4rem;
  }

  .choose-subheader {
    font-size: 1.3rem;
  }

  .choose-desc,
  .choose-subtext {
    font-size: 0.95rem;
  }

  /* Shrink image composition for small screens */
  .choose-img-box {
    transform: scale(0.75);
  }
}

/* ----------------Category-------------- */ 

#category {
    min-height: 90lvh;
}

.category-header {
    font-size: 3.5rem; 
    font-family: 'Cormorant Garamond', serif; 
    font-weight: 500;
    color: #4D1F08;
}

.category-subheader {
    font-family: 'Cormorant Garamond', serif; 
    color: #000;  
    font-size: 1.2rem;
}

.category-card-title {
    font-family: 'Cormorant Garamond', serif; 
    font-size: 1.2rem;
    color: #000; 
    text-align: center;
}

/* ===== CATEGORY RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  #category {
    min-height: auto;
    padding: 70px 20px;
  }

  .category-header {
    font-size: 3rem;
  }

  .category-subheader {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  /* Stack cards into 2-per-row */
  #category .d-flex.gap-2 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  #category .d-flex.flex-column {
    width: 45%;
    align-items: center;
  }

  #category img {
    width: 160px;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .category-header {
    font-size: 2.4rem;
  }

  .category-subheader {
    font-size: 1rem;
  }

  /* Stack cards single column */
  #category .d-flex.flex-column {
    width: 100%;
  }

  #category img {
    width: 140px;
  }

  .category-card-title {
    font-size: 1.05rem;
  }
}

/* ----------------Trending-------------- */ 

#trending {
    min-height: 90lvh;
}

.trending-subheader {
    color: #151313; 
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
}

.trending-header {
    font-size: 2.5rem; 
    font-family: 'EB Garamond', serif;
    color: #151313;
}

/* === TRENDING CAROUSEL === */

.trending-carousel-container {
  position: relative;
  padding-top: 20px;
}

/* Arrows */
.trending-carousel-arrows {
  position: absolute;
  top: -45px;
  right: 80px;
  display: flex;
  gap: 8px;
}

.trending-carousel-arrows button {
  color: white;
  border: none;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

/* Track */
.trending-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 85%;
  margin: 0 auto;
}

/* Cards */
.trending-carousel-card {
  min-width: 260px;
  flex-shrink: 0;
  text-align: left;
  font-family: 'Outfit', sans-serif;
}

.trending-carousel-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.trending-carousel-card p {
  margin-top: 12px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.trending-carousel-card span {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ===== TRENDING RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  #trending {
    min-height: auto;
    padding: 60px 0;
  }

  .trending-header {
    font-size: 2.1rem;
  }

  .trending-carousel-arrows {
    right: 20px; /* pull arrows inward */
  }

  .trending-carousel-track {
    width: 95%;
  }

  .trending-carousel-card {
    min-width: 230px;
  }

  .trending-carousel-card img {
    height: 320px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .trending-subheader {
    font-size: 0.75rem;
  }

  .trending-header {
    font-size: 1.9rem;
  }

  .trending-carousel-arrows {
    top: -35px;
    right: 10px;
  }

  .trending-carousel-arrows button {
    width: 30px;
    height: 30px;
  }

  .trending-carousel-card {
    min-width: 200px;
  }

  .trending-carousel-card img {
    height: 280px;
  }

  .trending-carousel-card p {
    font-size: 0.85rem;
  }

  .trending-carousel-card span {
    font-size: 0.75rem;
  }
}

/* --------------Contact-------------- */ 

#contact {
    height: 120lvh; 
    background-color: #D1AC8C;
}

.contact-box {
    width: 75%; 
    min-height: 85%; 
    border: 1px solid white; 
    border-radius: 30px; 
    overflow: hidden;
}

.contact-pink {
  flex: 2; 
  background-color: #d4bca7;
}

.contact-brown {
  flex: 1;
  background-color: #4D1F08;
}

.contact-header {
    color: white; 
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem; 
    font-weight: bold;
}

.contact-header span {
    color: #4D1F08;
}

.contact-subheader {
    color: #331100; 
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem; 
    font-weight: bold;
}

#contact input:not([type="checkbox"]), #contact textarea {
    padding: 8px; 
    font-size: 1rem; 
    font-family: 'Montserrat', sans-serif; 
    border: 1px solid white; 
    background-color: #d4bca7;
}

#contact input:not([type="checkbox"])::placeholder,
#contact textarea::placeholder {
  font-size: .7rem;
  color: #222;
  opacity: 1;  /* ensures full black in Firefox */
}


#contact input:focus:not([type="checkbox"]), #contact textarea:focus {
    outline: 1px solid #4D1F08; 
    border: 0;
}

#contact button {
    background-color: #4D1F08; 
    color: white; 
    border-radius: 0;
}

.checkbox {
    color: #4D1F08; 
    line-height: 100%;
    font-family: 'EB Garamond', serif;
}

.checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  
  width: 22px;
  height: 22px;
  display: inline-block;
  
  border: 2px solid #4D1F08;
  border-radius: 6px;
  
  background-color: transparent;   /* light fill when unchecked */
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

/* Checked state → solid brown fill */
.checkbox input[type="checkbox"]:checked {
  background-color: #4D1F08;
}

/* Perfectly centered larger white tick */
.checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

#contact a {
    color: #4D1F08;
}

.address {
    color: #252525; 
    font-family: 'Outfit', sans-serif;
    font-size: .8rem; 
    font-weight: 500;
}

iframe { 
    position: absolute;
    width: 35%; 
    height: 70%; 
    top: 50%; 
    left: 50%; 
    transform: translate(20%, -50%); 
    border: 5px solid #4D1F08 !important;
    box-sizing: border-box;
    border-radius: 20px;
}

/* ===== CONTACT RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  #contact {
    height: auto;
    padding: 80px 0;
  }

  .contact-box {
    flex-direction: column;
    width: 90%;
    min-height: auto;
  }

  .contact-pink,
  .contact-brown {
    flex: none;
    width: 100%;
  }

  .contact-pink {
    padding-bottom: 60px;
  }

  /* Form container full width */
  .form-container {
    padding: 0 20px;
  }

  .form-container form {
    width: 100% !important;
  }

  .address {
    width: 100% !important;
    margin-top: 20px;
  }

  /* Move iframe below form instead of floating */
  iframe {
    position: relative;
    width: 100%;
    height: 300px;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .contact-header {
    font-size: 2rem;
  }

  .contact-subheader {
    font-size: 1rem;
  }

  #contact input:not([type="checkbox"]),
  #contact textarea {
    font-size: 0.9rem;
  }

  iframe {
    height: 260px;
  }

  .checkbox {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}

/* --------------Footer-------------- */ 

/* Footer background */
#footer {
  background: #f6ddc7;
  padding: 10px;
  font-family: 'EB Garamond', serif;
}

/* White rounded card */
.footer-card {
  background: #fff;
  border-radius: 28px;
  padding: 50px 50px;
  max-width: 95%;
  margin: auto;
}

/* Top row layout */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Logo + address side-by-side */
.footer-left {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.footer-left img {
  width: 85px;
  flex-shrink: 0;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.6; 
  font-weight: bold;
  max-width: 420px;
}

/* Newsletter right side */
.footer-right {
  text-align: left;
}

.footer-right p {
  font-size: 0.95rem;
  margin-bottom: 12px; 
  font-weight: bold;
}

.footer-right input {
  width: 260px;
  padding: 7px 10px;
  font-size: 0.8rem;
  border: 1px solid #ddd;
  outline: none;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: #eee;
  margin: 30px 0;
}

/* Bottom row */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}

/* Social icons */
.footer-social p {
  font-size: 0.65rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons img {
  width: 35px;
  height: 35px;
  border: 1px solid #000;
  border-radius: 50%;
  padding: 4px;
}

/* Copyright center */
.footer-copy { 
  font-size: .8rem;
}

/* Links right */
.footer-links a {
  color: #000;
  text-decoration: none;
  margin-left: 20px;
  font-size: 1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {

  #footer {
    padding: 30px 15px;
  }

  .footer-card {
    padding: 30px 20px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .footer-left {
    justify-content: center;
  }

  .footer-right {
    text-align: center;
    width: 100%;
  }

  .footer-right input {
    width: 80%;
    max-width: 300px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links a {
    margin: 0 10px;
  }
}