/* Pawnuptials Shared Stylesheet */

/* Google Fonts & Font Awesome */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* ===========================
   CSS Variables - Color Palette
   =========================== */
:root {
    /* Primary Brand Colors - Standardized */
    --primary-gold: #B8860B;        /* Muted brass gold - main accent */
    --soft-gold: #E6D7B8;           /* Warm, creamy gold */
    --warm-brown: #8B4513;          /* Muddy brown like paw print */
    --deep-brown: #654321;          /* Darker earth tone */
    
    /* Background Colors */
    --cream: #FAF7F0;               /* Main background */
    --light-gray: #F5F2E8;          /* Secondary background */
    --soft-beige: #F0E6D2;          /* Natural beige */
    
    /* Text Colors */
    --text-brown: #5D4037;          /* Primary text - rich brown */
    --charcoal: #2C2C2C;            /* Dark text/elements */
    
    /* Accent Colors */
    --paw-brown: #6D4C41;           /* Darker muddy brown for paw prints */
    --wedding-gold: #CD853F;        /* Peru gold for elegance */
    --soft-pink: #F5E6E8;           /* Subtle pink accent */
    --rose-gold: #E8B4B8;           /* Rose gold accent */
}

/* ===========================
   Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-brown);
    background-color: var(--cream);
}

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

/* ===========================
   Header & Navigation
   =========================== */
.header {
    background: #FFFFFF;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-brown);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.logo-paw {
    width: 40px;
    height: 32px;
    object-fit: cover;
}

/* Desktop Navigation Links */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav a {
    color: var(--text-brown);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    background: var(--primary-gold);
    color: white;
}

/* Hamburger Menu - Mobile Only */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(250, 247, 240, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: none;
    padding-top: 100px;
}

.nav-overlay.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 50px;
}

.nav-links a {
    color: var(--text-brown);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-links a:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
}

/* ===========================
   Page Headers
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--soft-gold) 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-brown);
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--warm-brown);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--warm-brown);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   Buttons
   =========================== */
.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

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

.btn-secondary {
    background: white;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover {
    background: var(--warm-brown);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.4);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
}

.cta-button {
    background: var(--primary-gold);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.cta-button:hover {
    background: var(--warm-brown);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gold);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 40px;
}

.view-all-btn:hover {
    background: var(--warm-brown);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
}

/* ===========================
   Hero Section (Home Page)
   =========================== */
.hero {
    background: linear-gradient(rgba(250, 247, 240, 0.8), rgba(230, 215, 184, 0.8)), url('http://pawnuptials.com.s3-website.us-east-2.amazonaws.com/pawnuptials-photos/elegant-staircase.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--warm-brown);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Services Overview Section
   =========================== */
.services-overview {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-preview {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.service-preview:hover {
    transform: translateY(-10px);
}

.service-preview i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-preview h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.service-preview p {
    color: var(--warm-brown);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--warm-brown);
}

/* ===========================
   About Section
   =========================== */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--cream) 100%);
}

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

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--charcoal);
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--warm-brown);
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ===========================
   Gallery Section
   =========================== */
.gallery-preview {
    padding: 100px 0;
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ===========================
   Services Page
   =========================== */
.services {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-brown);
}

.service-card p {
    color: var(--warm-brown);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--warm-brown);
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

/* ===========================
   Pricing Section
   =========================== */
.pricing {
    padding: 100px 0;
    background: var(--light-gray);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 3px solid var(--soft-gold);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-brown);
    margin-bottom: 10px;
}

.pricing-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.pricing-header .duration {
    color: var(--warm-brown);
    font-size: 1rem;
}

/* ===========================
   Why Choose Section
   =========================== */
.why-choose {
    padding: 100px 0;
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid var(--primary-gold);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.benefit-item p {
    color: var(--warm-brown);
}

/* ===========================
   Contact Page
   =========================== */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-brown);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    background: var(--primary-gold);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-brown);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--warm-brown);
    font-size: 1rem;
}

.contact-details a {
    color: var(--warm-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--warm-brown) 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.contact-form .subtitle {
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.2);
}

.form-group select option {
    background: var(--charcoal);
    color: white;
}

.submit-btn {
    background: white;
    color: var(--primary-gold);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

/* ===========================
   Service Area Section
   =========================== */
.service-area {
    padding: 100px 0;
    background: var(--light-gray);
    text-align: center;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.area-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-gold);
}

.area-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.area-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-brown);
    margin-bottom: 15px;
}

.area-item p {
    color: var(--warm-brown);
}

/* ===========================
   FAQ Section
   =========================== */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-item {
    background: var(--light-gray);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 25px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(184, 134, 11, 0.1);
}

.faq-answer {
    padding: 0 25px 25px;
    color: var(--warm-brown);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: #4a3629;
    color: #f5f5dc;
    padding: 50px 0 30px;
    text-align: center;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--text-brown);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFFFFF;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-divider {
    border-top: 1px solid #6b5143;
    padding-top: 20px;
    margin-top: 30px;
}

/* ===========================
   Lightbox
   =========================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
    user-select: none;
}

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

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    padding: 15px 25px;
    background: rgba(0,0,0,0.7);
    border-radius: 8px;
    max-width: 80%;
}

.lightbox-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.lightbox-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.lightbox-counter {
    position: absolute;
    top: 25px;
    left: 30px;
    color: white;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ===========================
   Mobile Responsive
   =========================== */
@media (max-width: 768px) {
    /* Hide desktop nav, show hamburger */
    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .services-preview,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    /* Fix: Taller aspect ratio on mobile to prevent face/subject cropping */
    .gallery-item {
        aspect-ratio: 4/5;
    }

    /* Fix: Default to top positioning for faces/subjects on mobile */
    .gallery-item img {
        object-position: center top;
    }

    .gallery-overlay {
        background: linear-gradient(transparent, rgba(0,0,0,0.9));
        padding: 15px 12px 12px;
    }

    .gallery-overlay h3 {
        font-size: 1rem;
    }

    .gallery-overlay p {
        font-size: 0.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Fix: About section image - prevent face cropping */
    .about-image img {
        object-fit: cover;
        object-position: center top;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .lightbox-nav {
        font-size: 2rem;
        padding: 15px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    /* Even taller for single-column layout */
    .gallery-item {
        aspect-ratio: 3/4;
    }

    .page-header h1 {
        font-size: 1.9rem;
    }
}
