@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Color Palette */
  --color-primary: #cd8a94; /* Soft Cherry Blossom Pink */
  --color-primary-dark: #b87580;
  --color-dark: #2a2a2a; /* Deep Charcoal */
  --color-darker: #1a1a1a;
  --color-light: #fcfbfb; /* Almost white */
  --color-cream: #f4efeb;
  --color-accent: #c4a484; /* Soft wood/gold */
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-darker);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(252, 251, 251, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 5%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar .logo {
  height: 50px;
}

.navbar .logo img {
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.navbar.scrolled .nav-links li a {
  color: var(--color-dark);
}

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

.nav-links li a:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  background: #ffffff;
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-radius: 8px;
  list-style: none;
  padding: 10px 0;
  z-index: 101;
  border-top: 3px solid var(--color-primary);
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeInUp 0.3s ease;
}

.dropdown-content li {
  width: 100%;
}

.dropdown-content li a {
  color: var(--color-dark) !important;
  display: block;
  padding: 12px 25px;
  text-transform: none; /* Override uppercase from parent */
  font-weight: 500;
}

.dropdown-content li a::after {
  display: none;
}

.dropdown-content li a:hover {
  background: var(--color-cream);
  color: var(--color-primary) !important;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05); /* slightly scaled for parallax effect later if needed */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  z-index: -1;
}

.hero-content {
  color: var(--color-light);
  max-width: 800px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 20px;
  color: var(--color-light);
  font-style: italic;
  font-weight: 400;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--color-primary);
  color: var(--color-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  border: 1px solid var(--color-primary);
  transition: var(--transition-smooth);
}

.cta-btn:hover {
  background-color: transparent;
  backdrop-filter: blur(5px);
}

/* About Section */
.about {
  background-color: var(--color-light);
  display: flex;
  align-items: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  position: relative;
}

.about-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
}

.about-text p {
  color: #555;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Mission Section */
.mission {
  background-color: var(--color-cream);
  text-align: center;
}

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

.mission-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.mission-text {
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
  font-family: var(--font-heading);
}

/* Services / Features */
.features {
  background-color: var(--color-light);
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: var(--transition-smooth);
  border-bottom: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-bottom-color: var(--color-primary);
}

.icon-wrapper {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Contact / Call to Action */
.cta-section {
  background: var(--color-darker);
  color: var(--color-light);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-light);
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
}

.cta-btn-light {
  background: var(--color-light);
  color: var(--color-darker);
  border-color: var(--color-light);
}

.cta-btn-light:hover {
  background: var(--color-primary);
  color: var(--color-light);
  border-color: var(--color-primary);
}

/* Footer */
footer {
  background-color: #111;
  color: #999;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #333;
  padding-bottom: 40px;
}

.social-links a {
  color: #ddd;
  margin-left: 20px;
  font-size: 1.1rem;
}

.social-links a:hover {
  color: var(--color-primary);
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s all ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 3.5rem;
  }
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--color-light);
  transition: var(--transition-smooth);
}

.navbar.scrolled .hamburger span {
  background-color: var(--color-dark) !important;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    right: -100%;
    flex-direction: column;
    background-color: var(--color-light);
    width: 250px;
    height: 100vh;
    padding: 30px;
    gap: 20px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li a {
    color: var(--color-dark) !important;
  }
  
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    border-top: none;
    padding-left: 15px;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
    animation: none;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {transform:scale(0.8); opacity:0}
  to {transform:scale(1); opacity:1}
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--color-primary);
}

.lightbox-prev, .lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -25px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.3s;
  user-select: none;
  border-radius: 0 3px 3px 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2001;
}

.lightbox-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background-color: var(--color-primary);
}
