/* ATX Photo Booth - Main Stylesheet */

/* CSS Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-pink: #f6b4cd;
    --primary-pink-dark: #cc115e;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-alt: #252525;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --border-color: #333333;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: var(--transition);
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 40px;
    height: auto;
}

.logo span {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-pink);
}

.nav-cta {
    background: var(--primary-pink);
    color: var(--bg-dark) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--text-light);
    color: var(--bg-dark) !important;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pennybacker-bridge.jpg') center/cover no-repeat;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary-pink);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 40px !important;
}

.hero-cta {
    display: inline-block;
    background: var(--primary-pink);
    color: var(--bg-dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(246, 180, 205, 0.3);
}

/* Page Hero (smaller for interior pages) */
.page-hero {
    padding: 150px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 100%);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-pink);
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 100px 0 20px;
    background: var(--bg-dark);
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 10px;
    color: var(--text-muted);
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--primary-pink);
}

.breadcrumbs .current {
    color: var(--primary-pink);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-dark);
}

.section-alt {
    background: var(--bg-card);
}

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

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features/Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card-alt);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
}

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

.feature-icon .material-symbols-outlined {
    font-size: 2.5rem;
}

/* Contact info icons */
.contact-info .material-symbols-outlined {
    font-size: 1.2rem;
    color: var(--primary-pink);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card-alt);
    border: 1px solid var(--primary-pink-dark);
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(204, 17, 94, 0.2);
}

.pricing-card.popular {
    border-width: 2px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-pink-dark);
    color: var(--text-light);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-pink);
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.pricing-btn:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--bg-dark);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: var(--transition);
}

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

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-tab {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    font-family: inherit;
}

.gallery-tab:hover,
.gallery-tab.active {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--bg-dark);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
}

.faq-item {
    background: var(--bg-card-alt);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
}

.faq-item h3 {
    color: var(--primary-pink);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Service Areas */
.service-areas {
    text-align: center;
}

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

.area-card {
    background: var(--bg-card-alt);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.area-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-3px);
}

.area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.area-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.area-tag {
    background: var(--bg-card-alt);
    border: 1px solid var(--border-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: var(--transition);
}

.area-tag:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
}

/* Content Sections */
.content-section {
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
    margin-top: 50px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-section ul {
    color: var(--text-muted);
    margin-left: 25px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col-content h2 {
    font-size: 2rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.two-col-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.7;
}

.two-col-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.two-col-content li {
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.two-col-content li::before {
    content: '✓';
    color: var(--primary-pink);
    position: absolute;
    left: 0;
}

.two-col-image {
    border-radius: 15px;
    overflow: hidden;
}

.two-col-image img {
    width: 100%;
    height: auto;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-pink-dark) 0%, #8b0a3d 100%);
}

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

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    display: inline-block;
    background: var(--text-light);
    color: var(--primary-pink-dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.cta-section .btn:hover {
    background: var(--bg-dark);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 350px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-pink);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--text-light);
    color: var(--bg-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
}

.btn-outline:hover {
    background: var(--primary-pink);
    color: var(--bg-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-col-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .page-hero {
        padding: 120px 20px 60px;
    }

    .section {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 40px 25px;
    }

    .gallery-tabs {
        gap: 10px;
    }

    .gallery-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}
