/* Victorian Gothic Car Wash Landing Page Styles */

/* CSS Custom Properties for Victorian Gothic Theme */
:root {
    /* Dark Color Palette */
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --accent-dark: #3a3a3a;
    --text-light: #f5f5f5;
    --text-muted: #b8b8b8;
    --gold-accent: #d4af37;
    --bronze-accent: #cd7f32;
    --copper-accent: #b87333;
    
    /* Ornamental Colors */
    --ornament-gold: #ffd700;
    --ornament-silver: #c0c0c0;
    --ornament-copper: #b87333;
    
    /* Typography */
    --font-primary: 'Cinzel', serif;
    --font-secondary: 'Crimson Text', serif;
    --font-decorative: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Shadows and Effects */
    --shadow-ornament: 0 0 20px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
    border: 2px solid var(--gold-accent);
    border-radius: 15px;
    padding: 25px;
    max-width: 400px;
    z-index: 10000;
    box-shadow: var(--shadow-dark), var(--shadow-ornament);
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    backdrop-filter: blur(10px);
}

.cookie-popup.show {
    transform: translateX(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-icon {
    text-align: center;
    font-size: 2rem;
    color: var(--gold-accent);
}

.cookie-text h3 {
    font-family: var(--font-primary);
    color: var(--gold-accent);
    margin-bottom: 10px;
    text-align: center;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--bronze-accent) 100%);
    color: var(--primary-dark);
}

.btn-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-decline:hover {
    background: var(--text-muted);
    color: var(--primary-dark);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold-accent);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    text-decoration: none;
}

.nav-logo i {
    font-size: 1.8rem;
    color: var(--ornament-gold);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), var(--bronze-accent));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-accent);
}

.nav-link:hover::after {
    width: 100%;
}

.order-btn {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--bronze-accent) 100%);
    color: var(--primary-dark) !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.order-btn::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--gold-accent);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 150vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-ornament {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
    text-shadow: var(--shadow-ornament);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: var(--font-decorative);
    font-size: 1.5rem;
    color: var(--gold-accent);
    margin-bottom: 30px;
    font-style: italic;
}

.hero-description {
    margin-bottom: 40px;
}

.hero-description p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--bronze-accent) 100%);
    color: var(--primary-dark);
    border: 2px solid var(--gold-accent);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--gold-accent);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary:hover {
    background: var(--gold-accent);
    color: var(--primary-dark);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-ornament {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
    text-shadow: var(--shadow-ornament);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-family: var(--font-decorative);
    font-size: 1.3rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ornament" patternUnits="userSpaceOnUse" width="50" height="50"><path d="M25,5 L45,25 L25,45 L5,25 Z" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23ornament)"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    border: 2px solid var(--gold-accent);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--ornament-gold);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
    text-shadow: var(--shadow-ornament);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.feature-tag {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--bronze-accent) 100%);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-primary);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.about-description p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    border: 3px solid var(--gold-accent);
    box-shadow: var(--shadow-dark);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--gold-accent);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--gold-accent);
}

/* Order Section */
.order {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.order-info .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.order-description p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.order-form-container {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
    border: 2px solid var(--gold-accent);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-dark);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-primary);
    color: var(--gold-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--accent-dark);
    border-radius: 10px;
    background: var(--primary-dark);
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--bronze-accent) 100%);
    color: var(--primary-dark);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--primary-dark);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--gold-accent);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
    text-shadow: var(--shadow-ornament);
}

.contact-details h3 {
    font-family: var(--font-primary);
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-details p {
    color: var(--text-muted);
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    border-top: 3px solid var(--gold-accent);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: var(--font-primary);
    color: var(--gold-accent);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 1.8rem;
    color: var(--ornament-gold);
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--accent-dark);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        border-top: 2px solid var(--gold-accent);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content,
    .order-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cookie-popup {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card,
    .order-form-container {
        padding: 25px 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--bronze-accent) 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--ornament-gold) 0%, var(--gold-accent) 100%);
}

/* Policy Pages Styles */
.policy-page {
    padding: 120px 0 80px;
    background: var(--primary-dark);
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--gold-accent);
}

.policy-header h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.policy-subtitle {
    font-family: var(--font-decorative);
    color: var(--text-muted);
    font-size: 1.2rem;
    font-style: italic;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
    border-radius: 15px;
    border: 1px solid var(--gold-accent);
    box-shadow: var(--shadow-dark);
}

.policy-section h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold-accent);
}

.policy-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.policy-footer {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
    border-radius: 15px;
    border: 2px solid var(--gold-accent);
    text-align: center;
}

.policy-footer p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.policy-footer strong {
    color: var(--gold-accent);
    font-family: var(--font-primary);
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-page {
        padding: 100px 0 60px;
    }
    
    .policy-header h1 {
        font-size: 2.5rem;
    }
    
    .policy-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section p {
        font-size: 1rem;
    }
    
    .policy-footer {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 15px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
}

/* Selection Styles */
::selection {
    background: var(--gold-accent);
    color: var(--primary-dark);
}

::-moz-selection {
    background: var(--gold-accent);
    color: var(--primary-dark);
}
