/* ===== MODERN WEDDING PHOTOGRAPHY WEBSITE ===== */

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #d4a574;
  --primary-dark: #b8895f;
  --primary-light: #e8c9a6;
  --bg-cream: #faf8f5;
  --bg-white: #ffffff;
  --text-dark: #2c2c2c;
  --text-gray: #666666;
  --text-light: #999999;
  --border: #e8e4df;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-hover: rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #3d5443 0%, #28392e 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 165, 116, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
  object-fit: contain;
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

nav a:hover {
  color: var(--primary-light);
}

/* === HERO SECTION === */
.hero {
  height: 90vh;
  min-height: 600px;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: fadeInUp 1s ease;
}

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

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

/* === BUTTONS === */
.cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--primary-dark);
  transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.cta:hover::before {
  width: 300px;
  height: 300px;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.cta span {
  position: relative;
  z-index: 1;
}

/* === SECTIONS === */
section {
  padding: 6rem 2rem;
}

.intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.intro p {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.9;
  font-weight: 300;
}

/* === PORTFOLIO GALLERY === */
.portfolio {
  max-width: 1600px;
  margin: 0 auto;
  padding: 6rem 2rem;
  background: var(--bg-white);
}

.portfolio h2 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 4rem;
}

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

.gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.5s ease;
  filter: grayscale(20%) brightness(1.05);
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px var(--shadow-hover);
  filter: grayscale(0%) brightness(1);
}

/* === ABOUT PAGE === */
.about-hero {
  padding: 8rem 2rem 6rem;
  max-width: 1300px;
  margin: 0 auto;
}

.about-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: stretch;
}

.about-image {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 60px var(--shadow);
  min-height: 600px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% top;
  display: block;
}

.about-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 2.5rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}

.about-text p {
  margin-bottom: 1.8rem;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-gray);
}

.philosophy {
  padding: 6rem 2rem;
  background: var(--bg-white);
}

.content-wrapper {
  max-width: 1300px;
  margin: 0 auto;
}

.philosophy h2 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 4rem;
}

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

.philosophy-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-cream);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.philosophy-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow);
}

.philosophy-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin: 0 auto 1.5rem;
  display: block;
}

.philosophy-item h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.philosophy-item p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* === PRICING === */
.pricing-hero {
  text-align: center;
  padding: 8rem 2rem 3rem;
}

.pricing-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.pricing-hero p {
  font-size: 1.3rem;
  color: var(--text-gray);
  font-weight: 300;
}

.pricing {
  padding: 4rem 2rem 6rem;
  background: var(--bg-white);
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-cream);
  padding: 3rem 2.5rem;
  border-radius: 4px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-hover);
}

.pricing-card.featured {
  background: var(--bg-white);
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 60px var(--shadow-hover);
}

.pricing-card.featured:hover {
  transform: scale(1.08);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
}

.features {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

.features li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-gray);
}

.features li:last-child {
  border-bottom: none;
}

.pricing-info {
  padding: 6rem 2rem;
  background: var(--bg-cream);
}

.pricing-info h2 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 4rem;
}

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

.extra-item {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.extra-item:hover {
  box-shadow: 0 10px 30px var(--shadow);
  transform: translateY(-5px);
}

.extra-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.extra-item p {
  color: var(--text-gray);
  line-height: 1.7;
}

.pricing-note {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 4px;
  border-left: 4px solid var(--primary);
}

.pricing-note h3 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.pricing-note ul {
  list-style: none;
}

.pricing-note li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-gray);
  line-height: 1.7;
}

.pricing-note li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* === CONTACT PAGE === */
.contact-hero {
  text-align: center;
  padding: 8rem 2rem 3rem;
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.3rem;
  color: var(--text-gray);
  font-weight: 300;
}

.contact-section {
  padding: 4rem 2rem 6rem;
  background: var(--bg-white);
}

.contact-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: var(--bg-cream);
  padding: 3rem;
  border-radius: 4px;
}

.contact-form h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: var(--bg-white);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-details {
  background: var(--bg-cream);
  padding: 2.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-item p {
  color: var(--text-gray);
  line-height: 1.7;
}

.contact-item .small {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.contact-item a:hover {
  color: var(--primary);
}

.social-links {
  background: var(--bg-cream);
  padding: 2.5rem;
  border-radius: 4px;
}

.social-links h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-icons a {
  padding: 1rem 1.5rem;
  border-radius: 4px;
  background: var(--bg-white);
  transition: all 0.3s ease;
  font-weight: 500;
}

.social-icons a:hover {
  background: var(--primary);
  color: white;
  transform: translateX(5px);
}

/* === FAQ === */
.faq-section {
  padding: 6rem 2rem;
  background: var(--bg-cream);
}

.faq-section h2 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 4rem;
}

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

.faq-item {
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 4px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.faq-item:hover {
  box-shadow: 0 10px 30px var(--shadow);
  border-left-color: var(--primary);
  transform: translateX(5px);
}

.faq-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.faq-item p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: white;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 300;
}

.cta-section .cta {
  background: white;
  color: var(--primary);
}

.cta-section .cta:hover {
  background: var(--bg-cream);
  transform: translateY(-5px) scale(1.05);
}

/* === LEGAL PAGES === */
.legal-page {
  padding: 8rem 2rem 6rem;
  min-height: 70vh;
}

.legal-page h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
}

.legal-page h3 {
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  color: var(--primary);
}

.legal-page h4 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-page p {
  margin-bottom: 1.5rem;
  line-height: 1.9;
  color: var(--text-gray);
  font-size: 1.05rem;
}

.legal-page ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.legal-page li {
  margin-bottom: 0.8rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.legal-page .note {
  background: #fff9e6;
  padding: 2rem;
  border-left: 4px solid var(--primary);
  margin-top: 3rem;
  border-radius: 4px;
}

/* === FOOTER === */
footer {
  margin-top: 0;
  padding: 3rem 2rem;
  text-align: center;
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
}

footer p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  margin: 0 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a.active {
  color: var(--primary-light);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .nav-container {
    padding: 1.5rem 2rem;
  }
  
  nav ul {
    gap: 2rem;
  }
  
  .about-container {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 1.5rem;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  nav ul {
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero {
    height: 70vh;
    margin-top: 120px;
    background-attachment: scroll;
  }
  
  .hero-text {
    padding: 2rem 1.5rem;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-container {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .philosophy-grid,
  .extras-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .cta {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }
}
