@media (max-width: 600px) {
  .swiper {
    width: 100vw !important;
    margin-left: -10px;
    margin-right: -10px;
  }
  .swiper-slide {
    width: 100vw !important;
    justify-content: center;
    padding: 0;
  }
  .card {
    width: 100vw !important;
    margin: 0;
    border-radius: 0;
  }
  .card img {
    width: 100vw !important;
    height: 250px;
    border-radius: 0;
  }
}

body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #fafafa;
      color: #333;
    }

.brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.2;
}

/* First line: Blue → Purple */
.line1 {
  display: inline-block;
  background: linear-gradient(to right, #1e90ff, #8a2be2); /* blue → purple */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* non-webkit */
}

/* Second line: Purple → Pink */
.line2 {
  display: inline-block;
  background: linear-gradient(to right, #8a2be2, #ff69b4); /* purple → pink */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

footer {
  background: #222;   /* Dark footer */
  color: white;
  text-align: center;
  padding: 15px;
}

	/* Header layout */
header {
background: url("/images/head_bg.jpg") no-repeat center center;
 background-size: 100% 100%; /* stretch to fill width & height */
  color: black;
  padding: 10px 20px;  /* adjust padding as needed */
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);

  display: flex;
  align-items: center;   /* vertically center logo + nav */
  height: 120px;          /* fixed header height */
  justify-content: space-between; /* logo left, menu right */
}

/* Overlay to reduce opacity */
header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(255, 255, 255, 0.5); /* white overlay with 50% opacity */
  z-index: 0; /* behind text/logo */
}

/* Make text/logo appear above overlay */
header .logo,
header nav {
  position: relative;
  z-index: 1;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  height: 100%;          /* fills full header height */
  max-height: 100%;      /* prevents overflow */
  object-fit: contain;   /* keeps aspect ratio */
}

header .logo span {
  font-weight: bold;       /* bold */
  font-style: italic;      /* italic */
  font-family: 'Playfair Display', serif; /* stylish font */
  font-size: 1.5rem;       /* adjust size */
  color: black;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

nav a.active {
  font-weight: bold;
  text-decoration: underline;
}

/* Hamburger hidden on desktop */
/* Hamburger hidden on desktop, visible on mobile */
/* Hamburger hidden on desktop, visible on mobile */
.hamburger {
  display: none;
  font-size: 32px;
  background: transparent !important;
  border: none !important;
  color: #222;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2100;
  border-radius: 0;
  box-shadow: none;
  pointer-events: auto;
}

/* Mobile styles */
@media (max-width: 768px) {
  nav {
    display: none; /* hidden until toggled */
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100px; /* below header */
    right: 20px;
    left: 20px;
    width: auto;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 2000;
  }

  nav.show {
    display: flex; /* visible when toggled */
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2100;
  }
}


/* Push main content down exactly by header height */
main {
  padding-top: 70px;  /* matches your header height */
  margin: 0;
}

/* Remove top margin on first section */
#home section:first-of-type {
  margin-top: 0;
  padding-top: 20px; /* optional, adds breathing room */
}
/* if your first section has a heading like <h3>, reset its margin: */
   #home section:first-of-type h3 {
  margin-top: 0;
}

    /* Full-width seamless sections */
    section {
      width: 100vw;
      margin: 0;
      padding: 40px 20px;
      border-radius: 0;
      box-shadow: none;
    }

    /* Different backgrounds for separation */
    #home section:nth-of-type(1) { background-color: #eef7ff; }
    #home section:nth-of-type(2) { background-color: #fff7e6; }
    #home section:nth-of-type(3) { background-color: #eef7ff; }

    .tabs {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
    }

    .tab {
      padding: 8px 15px;
      background: #ddd;
      border-radius: 5px;
      cursor: pointer;
    }

    .tab.active {
      background: #555;
      color: white;
    }

    .swiper {
      width: 80%;
      /* Add gap between slides */
      /* For Swiper v11+, use gap on .swiper-wrapper */
    }
      

    .swiper-slide {
      display: flex;
      justify-content: center;
    }

    .card {
      width: 325px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .card:hover {
      transform: scale(1.05);
    }

    #women2 .card img {
  height: 250px; /* Only affects images in the women2 handbag section */
}
	
	.card img {
  width: 100%;           /* fill card width */
  height: 250px;         /* increased by 50px */
  object-fit: cover;     /* crop/fit image nicely */
  border-radius: 8px;    /* optional: rounded corners */
}

    #detailView {
      display: none;
      padding: 5px;
      text-align: center;
    }

    #detailView img {
      max-width: 300px;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    #backBtn {
      margin-top: 15px;
      padding: 8px 15px;
      background: #444;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    #backBtn:hover {
      background: #666;
    }

    .page { display: none; }
    .page.active { display: block; }

   
	footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  position: relative;
}

footer .social-links {
  margin-top: 10px;
}

footer .social-links a {
  color: #fff;
  margin: 0 15px;
  font-size: 28px;
  transition: color 0.3s ease;
}

footer .social-links a:hover {
  color: #ff4081; /* pink hover effect */
}
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.contact-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-form, .contact-message {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form h2, .contact-message h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0077ff;
}

button {
  background: #0077ff;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

button:hover {
  background: #005bb5;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-message {
  display: none; /* hidden by default */
  flex-direction: column;
  justify-content: center;
  text-align: center;
  opacity: 0;
}

.contact-message.show {
  display: flex;
  animation: fadeIn 0.8s ease forwards;
}
