/* Chances R' Splash Page Styles */

:root {
    --primary-color: #d12a24;          /* Brand red from logo */
    --primary-dark: #b91c1c;           /* Darker red for hovers */
    --primary-light: #ef4444;          /* Light red for accents */
    --secondary-color: #f8f8f8;        /* Light backgrounds */
    --accent-gold: #DAA520;            /* Gold accent for premium feel */
    --text-dark: #2c2c2c;              /* Primary text */
    --text-gray: #666;                 /* Secondary text */
    --white: #ffffff;                  /* White backgrounds */
    --overlay-dark: rgba(44, 44, 44, 0.7);
    --shadow-light: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 35vh;
    min-height: 450px;
    max-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(357deg, var(--overlay-dark), rgb(115 88 87 / 20%));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo img {
    height: 160px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Location Selector Section */
.location-selector {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Location Cards */
.location-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-light);
    background: var(--white);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.location-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(357deg, var(--overlay-dark), rgb(115 88 87 / 20%));
    z-index: 2;
}

.location-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    z-index: 3;
}

.location-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.location-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.location-description {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


.location-btn {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    padding: 0.9rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.location-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Deals Section */
.deals {
    padding: 4rem 0;
    background: var(--white);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.deal-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.deal-image {
    max-height: 450px;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
}

.deal-content {
    padding: 2rem;
}

.deal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.deal-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.deal-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.deal-order-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.deal-order-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Services Overview */
.services-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(209, 42, 36, 0.03) 0%, rgba(209, 42, 36, 0.08) 100%);
    pointer-events: none;
}

.services-overview h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(209, 42, 36, 0.1);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(209, 42, 36, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    max-width: 100%;
    max-height: 150px;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.service-item p {
    color: var(--text-gray);
    line-height: 1.5;
}

/* Gallery */
.gallery {
    padding: 4rem 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

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

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand img {
    height: 60px;
    width: 60px;
    margin-bottom: 1rem;
    filter: brightness(1.2);
    border-radius: 50%;
    background: var(--white);
    padding: 8px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer-location h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-location p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-location a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-location a:hover {
    color: var(--accent-gold);
}

.location-services {
    margin: 1rem 0;
}

.service-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin: 0.2rem 0.3rem 0.2rem 0;
}

.location-hours {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.footer-social h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: var(--accent-gold);
    background: rgba(218, 165, 32, 0.2);
    transform: translateY(-2px);
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        height: 40vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-logo img {
        height: 120px;
    }
    
    .location-selector {
        padding: 3rem 0;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-card {
        border-radius: 8px;
    }
    
    .location-image {
        height: 350px;
    }
    
    .location-content {
        padding: 1.5rem;
    }
    
    .location-content h2 {
        font-size: 1.7rem;
    }
    
    .location-description {
        font-size: 1rem;
    }
    
    .location-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .services-overview {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .location-content h2 {
        font-size: 1.5rem;
    }
    
    .location-details p {
        font-size: 0.9rem;
    }
    
    .location-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.location-btn:focus,
.social-links a:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Loading states */
.location-image img {
    background: var(--secondary-color);
}

/* Print styles */
@media print {
    .hero,
    .services-overview,
    .footer {
        display: none;
    }
    
    .location-selector {
        padding: 2rem 0;
    }
    
    .location-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
