* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #f5f3f1; /* Light background color */
    color: #333;
}

header {
    background-color: #660000; /* Deep red for luxury feel */
    color: white;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-img {
  height: 60px;
  width: auto;
}

@media (max-width: 768px) {
  .logo-img {
    height: 45px;
  }
}


.nav-menu ul {
    display: flex;
    list-style-type: none;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: normal;
}

.hero {
    position: relative;
    height: 80vh;
    background: url('hero-animation.gif') center center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    background-color: rgba(102, 51, 0, 0.4); /* optional soft contrast */
}

/* Optional for better mobile fit */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    padding: 20px;
  }
}



.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
}

.explore-btn {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #FFD700;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none; /* ✅ Remove underline */
    color: #000; /* ✅ Make text readable */
    display: inline-block;
}


.hero-img {
    width: 100%;
    height: auto;
    opacity: 0.4;
}

.collection {
    padding: 40px 0;
    text-align: center;
}

.collection-title h2 {
    font-size: 32px;
    color: #660000;
    margin-bottom: 20px;
}

.collection-items {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.collection-item {
    width: 30%;
}

.collection-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.collection-item h3 {
    font-size: 24px;
    margin-top: 10px;
    color: #660000;
}

.about {
    padding: 40px 20px;
    text-align: center;
    background-color: #f5f3f1;
}

.about h2 {
    font-size: 32px;
    color: #660000;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    background-color: #660000;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

footer .social-links a {
    color: white;
    margin-left: 20px;
    font-size: 18px;
    text-decoration: none;
}

footer .social-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 40px 20px;
  }

  .hero-img {
    position: static;
    width: 100%;
    height: auto;
    opacity: 0.4;
  }

  .collection-items {
    flex-direction: column;
    align-items: center;
  }

  .collection-item {
    width: 90%;
    margin-bottom: 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Default menu */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

/* Hide hamburger on desktop */
.mobile-menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .mobile-menu-icon {
    display: block;
    color: white;
    padding: 10px 20px;
  }

  .nav-menu ul {
    display: none;
    flex-direction: column;
    background-color: #660000;
    width: 100%;
    padding: 10px 0;
  }

  .nav-menu ul.open {
    display: flex;
  }

  .nav-menu li {
    margin: 10px 0;
    text-align: center;
  }

  .nav-menu a {
    color: white;
    font-size: 18px;
  }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
  }

  .nav-wrapper {
    flex-direction: row;
  }

  .mobile-menu-icon {
    display: block;
    font-size: 28px;
    cursor: pointer;
    margin-left: 20px; /* space between logo and icon */
    color: white;
  }

  .nav-menu ul {
    display: none;
    flex-direction: column;
    background-color: #660000;
    width: 100%;
    padding: 10px 0;
  }

  .nav-menu ul.open {
    display: flex;
  }
}
.collection-item {
    text-decoration: none;
    color: inherit;
    display: block;
}
.collection-item h3 {
    text-decoration: none; /* ← Just in case */
}
.collection-item a {
    text-decoration: none;
    color: inherit;
}
.values-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.values-overlay {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px 40px;
  border-radius: 12px;
  color: white;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 20px;
  line-height: 2;
}
.about-video {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.about-video iframe {
  width: 100%;
  max-width: 720px;
  height: 405px;
  border-radius: 10px;
}
.install-btn {
    padding: 12px 24px;
    font-size: 16px;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    display: none; /* initially hidden */
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.about-hero {
  background-image: url('about-hero.jpg'); /* replace with your real image */
  background-size: cover;
  background-position: center;
  height: 50vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero-content p {
  font-size: 20px;
}
.about-page {
  padding: 60px 20px;
  background-color: #f5f3f1;
}

/* Shared row layout */
.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Reverses row layout */
.about-row.reverse {
  flex-direction: row-reverse;
}

/* Text and video sides */
.about-text, .about-video {
  flex: 1 1 45%;
  max-width: 45%;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
}

/* Headings */
.about-text h2 {
  color: #660000;
  font-size: 28px;
  margin-bottom: 15px;
}

/* Paragraphs */
.about-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

/* Video styling */
.about-video video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
  }

  .about-text {
    order: 1;
    text-align: center;
    max-width: 100%;
    padding: 10px;
  }

  .about-video {
    order: 2;
    max-width: 100%;
    padding: 10px;
  }
}
.about-section {
  padding: 60px 20px;
  background-color: #f5f3f1;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.about-text, .about-video {
  flex: 1 1 45%;
  max-width: 45%;
}

.about-text h2 {
  font-size: 32px;
  color: #660000;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.about-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-video {
    max-width: 100%;
  }
}
.collection-filters {
  text-align: center;
  margin: 40px 0 20px;
}

.collection-filters label {
  font-weight: bold;
  margin-right: 10px;
  font-size: 16px;
}

.collection-filters select {
  padding: 8px 14px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
