/* Mr. Sprinkle - Main Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    min-height: 100vh;
}

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

/* Header */
header {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

header .container {
    text-align: center;
}

.logo {
    margin-bottom: 1rem;
}

.logo img {
    height: 300px;
    width: auto;
    max-width: 600px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 30px rgba(255, 215, 0, 0.6)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.4));
    animation: sparkle 1.5s ease-in-out;
}

@keyframes sparkle {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
    25% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1)) drop-shadow(0 0 40px rgba(30, 144, 255, 0.6)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 1)) drop-shadow(0 0 50px rgba(30, 144, 255, 0.8)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.4)); }
    75% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1)) drop-shadow(0 0 40px rgba(30, 144, 255, 0.6)); }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 0.9rem;
}

nav a:hover {
    color: #FFD700;
}

/* Main Content */
main {
    margin-top: 320px;
}

section {
    padding: 4rem 0;
}

h1, h2, h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/brick-wall-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #1E90FF;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: #FFD700;
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #1E90FF;
    color: #fff;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

/* Guarantee Section */
#guarantee {
    background: #1a1a1a;
}

.guarantee-box {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

.guarantee-text {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured {
    border: 2px solid #FFD700;
}

.service-image {
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.turnaround {
    color: #1E90FF;
    font-style: italic;
    font-size: 0.9rem;
}

/* Grill Stations */
.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.station-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.placeholder-image {
    width: 100px;
    height: 100px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.mold-day-info {
    background: #FFD700;
    color: #000;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    margin-top: 2rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 5px;
}

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

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

.gallery-footer {
    text-align: center;
    color: #1E90FF;
    margin-top: 2rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
}

.founding-offer {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

/* Lead Capture Form */
.lead-capture-form {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 2px solid #FFD700;
}

.quote-form {
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input,
.form-row select,
textarea {
    padding: 1rem;
    border: 1px solid #555;
    border-radius: 5px;
    background: #333;
    color: #fff;
    font-size: 1rem;
}

textarea {
    width: 100%;
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: #FFD700;
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #1E90FF;
    color: #fff;
}

.form-guarantee {
    text-align: center;
    color: #00ff00;
    margin-top: 1rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.sticky-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sticky-btn {
    background: #FFD700;
    color: #000;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.sticky-btn.secondary {
    background: #1E90FF;
    color: #fff;
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-guarantee {
    color: #FFD700;
    font-weight: bold;
    margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    header {
        padding: 0.5rem 0;
    }
    
    .logo {
        margin-bottom: 0.5rem;
    }
    
    .logo img {
        height: 180px;
        max-width: 400px;
    }
    
    nav ul {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    nav a {
        font-size: 0.8rem;
    }
    
    main {
        margin-top: 220px;
    }
    
    .sticky-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Video Intro Styles */
#videoIntro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#introVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}