:root {
    --sidebar-width: 220px;
    --sidebar-padding: 1.5rem;
    --sidebar-border: 1px;
    --sidebar-total: calc(var(--sidebar-width) + (2 * var(--sidebar-padding)) + var(--sidebar-border));
    --navbar-height: 80px;
    --toggle-offset: 30px;
}

.logo {
    width: 120px;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    animation: popFadeIn 0.4s ease-out;
}

.cta-button {
    background: #4CAF50;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
}

.cta-button:hover {
    transform: scale(1.05);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 3rem 2rem;
}

.contact-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    animation: popFadeIn 0.4s ease-out;
}

.contact-photo {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.contact-info li {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.contact-card, .photo-gallery {
    flex: 1 1 400px;
}

.photo-gallery {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    align-content: start;
}

.photo-gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 130px;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInZoom 0.6s ease-out forwards;


}

.card p strong {
    color: #555;
}

#radius {
    margin: 1rem 0;
    padding: 8px;
    border-radius: 5px;
    font-size: 14px;
}

.visit-button {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 14px;
    background-color: #388e3c;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.visit-button:hover {
    background-color: #1b5e20;
}

.no-deals-container {
    text-align: center;
    padding: 100px 20px;
    color: #444;
    animation: fadeInScale 1s ease-out forwards;
    transform: scale(0.95);
    opacity: 0;
}

.no-deals-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5em;
    color: #3aa56e;
}

.no-deals-container p {
    font-size: 1.2rem;
    margin-bottom: 1.5em;
}

#to-top {
    display: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background-color: #388e3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#to-top:hover {
    background-color: #2e7d32;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #2E7D32;
        padding: 1rem;
        border-radius: 8px;
    }

    .nav-links.show {
        display: flex;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-dropdown,
    .auth-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}




