* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #000000;
  --secondary-color: #f5f5f5;
  --accent-color: #000000;
  --text-dark: #000000;
  --text-light: #666666;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

img {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.3s ease;
  object-fit: cover;
  object-position: top center;
}

img.loaded {
  opacity: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Video Sections */
.video-section {
  padding: 0;
  background: #000;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.video-embed {
  width: 100%;
  height: 450px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: var(--transition);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 20px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo .logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul li a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
  z-index: 1001;
  position: relative;
}

.mobile-menu-btn.active::before {
  content: '\ed6d';
}

footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.footer-section p {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
  font-weight: 300;
  font-size: 0.9rem;
}

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  opacity: 0.7;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--text-light);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

/* Ensure no cropping on all devices */
.hero-slide {
  background-size: cover;
  background-position: center 10%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

/* Mobile responsiveness for Hero Background */
@media (max-width: 768px) {
  .hero-slide {
    background-size: cover; /* Back to cover for full filling */
    background-repeat: no-repeat;
    background-color: #000;
    background-position: center 15%; /* Custom position to focus on faces (top 15%) */
  }
  
  .hero {
    height: 80vh; /* Better balance for mobile */
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Better readability on varied backgrounds */
  }
}

.hero-slide.active {
  opacity: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.model-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top center;
  background: #f5f5f5;
  transition: transform 0.3s ease;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top center;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: backwards;
  letter-spacing: 2px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-minimal {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  min-width: 250px;
  text-align: center;
}

.btn-minimal:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-minimal.btn-dark {
  background: rgba(0, 0, 0, 0.5);
  border-color: transparent;
}

.btn-minimal.btn-dark:hover {
  background: rgba(0, 0, 0, 0.7);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 400;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.btn:hover {
  background: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  position: relative;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--primary-color);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: var(--secondary-color);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--primary-color);
}

.stat-label {
  color: var(--text-light);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 300;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 2rem;
}

.card-content h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.card-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 0.9rem;
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--secondary-color);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--secondary-color);
}

.faq-question i {
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width:768px) {
  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    transition: var(--transition);
    padding: 2rem;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    letter-spacing: 4px;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width:968px) {
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* About Section Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-text {
  text-align: left;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-light);
  font-weight: 300;
}

/* Typewriter Animation */
.typewriter-text {
  overflow: hidden;
}

.typewriter-text.animate {
  opacity: 1;
}

.typewriter-text .char {
  opacity: 0;
  display: inline;
}

.typewriter-text .char.visible {
  opacity: 1;
  transition: opacity 0.05s ease;
}

/* Mobile: Text on top, image on bottom */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: 2;
  }
  
  .about-text {
    order: 1;
  }
  
  .about-image img {
    height: 300px;
  }
}