/* ======================
   Deltona Car Wash
   Color Palette from signage:
   Red:        #ED2324
   Dark Red:   #C41E1E
   Black:      #1a1a1a
   Dark:       #111111
   White:      #ffffff
   Light Blue: #5ECAE7 (logo accent)
   Grey:       #f5f5f5
   ====================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #ED2324;
    --red-dark: #C41E1E;
    --black: #1a1a1a;
    --dark: #111111;
    --white: #ffffff;
    --blue: #5ECAE7;
    --grey: #f5f5f5;
    --grey-dark: #333333;
    --checker-size: 20px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--black);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

a {
    color: var(--red);
    text-decoration: none;
}

/* Checker Stripe */
.checker-stripe {
    width: 100%;
    height: var(--checker-size);
    background-image:
        linear-gradient(45deg, var(--black) 25%, transparent 25%),
        linear-gradient(-45deg, var(--black) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--black) 75%),
        linear-gradient(-45deg, transparent 75%, var(--black) 75%);
    background-size: var(--checker-size) var(--checker-size);
    background-position:
        0 0,
        0 calc(var(--checker-size) / 2),
        calc(var(--checker-size) / 2) calc(-1 * var(--checker-size) / 2),
        calc(-1 * var(--checker-size) / 2) 0;
    flex-shrink: 0;
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 35, 36, 0.4);
}

/* ========================
   NAVBAR
   ======================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .checker-stripe {
    --checker-size: 14px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--white);
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--red);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

/* ========================
   HERO
   ======================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/IMG_2499.jpg') center center / cover no-repeat;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(17, 17, 17, 0.7) 0%,
        rgba(17, 17, 17, 0.5) 50%,
        rgba(17, 17, 17, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 24px 80px;
}

.hero-logo {
    max-width: 400px;
    margin: 0 auto 24px;
}

.hero-tagline {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-block;
    background: var(--red);
    padding: 10px 36px;
    margin-bottom: 20px;
    transform: skewX(-5deg);
}

.badge-text {
    display: block;
    transform: skewX(5deg);
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

/* ========================
   SECTIONS
   ======================== */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 12px;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--grey-dark);
    font-size: 1.1rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================
   ABOUT
   ======================== */
.about {
    background: var(--grey);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.about-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    color: var(--red);
}

.about-icon svg {
    width: 100%;
    height: 100%;
}

.about-card h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ========================
   SERVICES
   ======================== */
.services {
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.3s, background 0.3s;
}

.service-item:hover {
    border-color: var(--red);
    background: rgba(237, 35, 36, 0.05);
}

.service-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-item h3 {
    color: var(--white);
    font-size: 1.15rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-item p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

/* ========================
   PRICING
   ======================== */
.pricing {
    background: var(--grey);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--red);
    transition: transform 0.3s;
}

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

.pricing-header h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 16px;
}

.pricing-amount {
    margin-bottom: 4px;
}

.price {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--red);
}

.price-period {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--red);
}

.extras-icon {
    color: var(--red);
    display: inline-block;
    padding: 8px 0;
}

.pricing-detail {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 24px;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}

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

/* ========================
   GALLERY
   ======================== */
.gallery {
    background: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.gallery-item.gallery-wide {
    grid-column: span 3;
    aspect-ratio: 21 / 9;
}

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

.gallery-item.gallery-half {
    grid-column: span 1;
}

.gallery-item.gallery-half:first-of-type {
    grid-column: 1 / 2;
}

.gallery-item.gallery-half:nth-of-type(2) {
    grid-column: 2 / 4;
}

.gallery-item.gallery-people {
    aspect-ratio: 3 / 2;
}

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

/* ========================
   TENANT
   ======================== */
.tenant {
    background: var(--white);
    padding: 60px 0;
    border-top: 3px solid var(--grey);
    border-bottom: 3px solid var(--grey);
}

.tenant-container {
    text-align: center;
}

.tenant-info h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 8px;
}

.tenant-info h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 12px;
}

.tenant-info p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 8px;
}

.tenant-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 8px;
}

.tenant-phone a {
    color: var(--red);
}

.tenant-phone a:hover {
    color: var(--red-dark);
}

/* ========================
   LOCATION
   ======================== */
.location {
    background: var(--grey);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.location-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.location-detail svg {
    flex-shrink: 0;
    color: var(--red);
}

.location-detail strong {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.btn-directions {
    margin-top: 8px;
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    display: block;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background: var(--dark);
    padding: 0;
}

.footer .checker-stripe {
    --checker-size: 14px;
}

.footer-content {
    text-align: center;
    padding: 40px 24px;
}

.footer-logo {
    height: 60px;
    margin: 0 auto 16px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.footer-hours {
    color: var(--red) !important;
    font-weight: 600;
}

.footer-copy {
    margin-top: 20px !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(17, 17, 17, 0.98);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 400px;
    }

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

    .gallery-item.gallery-wide,
    .gallery-item.gallery-half,
    .gallery-item.gallery-half:first-of-type,
    .gallery-item.gallery-half:nth-of-type(2) {
        grid-column: span 1;
    }

    .gallery-item {
        aspect-ratio: 16 / 10;
    }

    .gallery-item.gallery-people {
        aspect-ratio: 3 / 2;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tenant-info h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 220px;
    }

    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .badge-text {
        font-size: 1.1rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .price {
        font-size: 2.8rem;
    }
}
