/* ======== GLOBAL STYLES & COLOR PALETTE ======== */
:root {
    --blue-primary: #0079FF;
    --blue-dark: #0059FF;
    --yellow-primary: #FFED00;
    --yellow-dark: #FFDD00;
    --text-dark: #1a1a1a;
    --text-light: #f9f9f9;
    --border-light: #eee;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--yellow-dark);
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 2rem 1rem;
}

/* ======== THE MAIN CARD ======== */
.card-container {
    width: 100%;
    max-width: 450px; /* Card max width */
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Clips the hero image to the card radius */
    text-align: center;
}

/* 1. Hero Image */
.hero-image img {
    width: 100%;
    height: 200px; /* Fixed height for the image */
    object-fit: cover;
    display: block;
}

/* 2. Shop Info */
.shop-info {
    padding: 1.5rem;
    padding-top: 0;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-top: -40px; /* Pulls logo up over the hero image */
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-info h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--blue-dark);
    margin-top: 1rem;
}

.shop-info .tagline {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: -5px;
}

.shop-info .hours {
    font-size: 0.9rem;
    font-weight: 600;
    background-color: var(--yellow-primary);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    margin-top: 0.5rem;
}

/* 3. Main Action */
.actions {
    padding: 1.5rem;
}

.cta-button {
    display: block;
    width: 100%;
    background-color: var(--blue-dark);
    color: #fff;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--blue-primary);
    transform: scale(1.02);
}

.actions .sub-action {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue-primary);
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

.actions .parking-info {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}

/* 4. About */
.about {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.about p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

/* 5. Socials */
.socials {
    padding: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.social-button {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.social-button:hover {
    transform: scale(1.02);
}

.social-button.whatsapp {
    background-color: #25D366;
    color: #fff;
    text-align: left;
}
.social-button.whatsapp strong {
    display: block;
    font-size: 1rem;
}
.social-button.whatsapp span {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

.social-button.instagram {
    background-color: #E4405F;
    color: #fff;
}
.social-button.facebook {
    background-color: #1877F2;
    color: #fff;
}

/* 6. Footer */
footer {
    background-color: #f7f7f7;
    padding: 1.5rem;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
}

footer p {
    margin: 0;
}

footer a {
    color: var(--blue-primary);
    font-weight: 600;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .copyright {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

/* ======== RESPONSIVE (MOBILE) ======== */
@media (max-width: 480px) {
    body {
        padding: 0;
        background-color: #fff; /* Make background white on mobile */
    }
    
    .card-container {
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        min-height: 100vh;
    }
}
