/* Base styles */
:root {
  --gold: #C5A572;
  --black: #000000;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--black);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.nav {
  position: fixed;
  width: 100%;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(197, 165, 114, 0.2);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.2em;
  font-style: italic;
}

.gold-text {
  color: var(--gold);
  font-weight: 500;
}

.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 3rem;
  }
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--gold);
}

.menu-button {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-button {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 6rem;
  right: 0;
  width: 100%;
  height: calc(100vh - 6rem);
  background-color: var(--black);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-link {
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(197, 165, 114, 0.2);
  transition: color 0.3s;
}

.mobile-link:hover {
  color: var(--gold);
}

.social-links {
  margin-top: auto;
  padding-bottom: 2rem;
}

.social-links h3 {
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  color: var(--white);
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--gold);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 0 1rem;
}

.hero-text {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-text .logo-text {
  font-size: 4rem;
}

@media (min-width: 768px) {
  .hero-text .logo-text {
    font-size: 6rem;
  }
}

.hero-text .white-text {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
  margin-top: 1rem;
  letter-spacing: 0.5em;
}

@media (min-width: 768px) {
  .hero-text .white-text {
    font-size: 2rem;
  }
}

.divider {
  height: 1px;
  width: 6rem;
  background-color: var(--gold);
  margin: 2rem auto;
}

.scroll-icon {
  position: absolute;
  bottom: 3rem;
  color: var(--gold);
  animation: bounce 2s infinite;
}

/* About Section */
.about {
  padding: 8rem 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.about-content {
  display: grid;
  gap: 4rem;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.about-card {
  background-color: var(--black);
  color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
}

.about-card h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.about-card p {
  font-weight: 300;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.age-badge {
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
  background-color: var(--gold);
  padding: 2rem;
  border-radius: 0.5rem;
  color: var(--black);
}

.age-badge h3 {
  font-size: 1.875rem;
  font-weight: 700;
}

.age-badge p {
  font-weight: 300;
  letter-spacing: 0.1em;
}

/* Services Section */
.services {
  padding: 8rem 0;
  background-color: var(--black);
  color: var(--white);
}

.services-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 0.5rem;
  color: var(--black);
  transform: scale(1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  font-weight: 300;
}

/* Vision Section */
.vision {
  padding: 8rem 0;
  background-color: var(--white);
}

.vision-content {
  display: grid;
  gap: 4rem;
}

@media (min-width: 768px) {
  .vision-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vision-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}

.vision-features {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.vision-feature {
  display: flex;
  gap: 1.5rem;
}

.vision-icon {
  width: 3rem;
  height: 3rem;
  color: var(--gold);
  flex-shrink: 0;
}

.vision-feature h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.vision-feature p {
  color: #666;
  font-weight: 300;
}

.vision-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.vision-images img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.vision-images img:last-child {
  margin-top: 3rem;
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background-color: var(--black);
  color: var(--white);
}

.contact-content {
  display: grid;
  gap: 4rem;
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-links a:hover {
  color: var(--gold);
}

.contact-links svg {
  width: 2rem;
  height: 2rem;
}

.contact-links span {
  font-weight: 300;
  letter-spacing: 0.1em;
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(8px);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-form p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.partnerships {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
}

.partnerships svg {
  width: 2rem;
  height: 2rem;
}

.partnerships span {
  font-weight: 300;
  letter-spacing: 0.1em;
}

.footer {
  max-width: 1280px;
  margin: 8rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer p {
  color: #999;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}