/* /assets/css/style.css */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Neon-Sunset Animated Gradient Background */
body {
    background: linear-gradient(-45deg, #ff4b1f, #ff9068, #8a2387, #e94057, #f27121);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism Core Class */
.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

/* Navigation */
header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 10px;
    z-index: 100;
    margin: 0 20px;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

header nav a:hover {
    color: #ffcf54;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    margin: 40px auto;
    max-width: 800px;
    width: 90%;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Buttons */
.btn-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease;
    color: #fff;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-call {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Info Section (Address) */
.info-section {
    margin: 20px auto 60px auto;
    max-width: 800px;
    width: 90%;
    padding: 30px;
    text-align: center;
}

.info-section h3 {
    margin-bottom: 15px;
    color: #ffcf54;
}
/* =========================================
   MOBILE RESPONSIVENESS (FRONTEND)
   ========================================= */
@media screen and (max-width: 768px) {
    /* Header adjustments */
    header {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
        text-align: center;
    }
    header nav {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    header nav a {
        margin-left: 0;
        font-size: 0.95rem;
    }

    /* Hero Section */
    .hero {
        padding: 30px 15px;
        margin: 20px auto;
    }
    .hero h2 {
        font-size: 2rem; /* Smaller heading for phones */
    }
    .hero p {
        font-size: 1rem;
    }

    /* Buttons */
    .btn-container {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
        text-align: center;
    }

    /* Menu & Contact Page adjustments */
    .menu-wrapper {
        margin: 20px auto;
        padding: 0 10px;
    }
    .category-title {
        font-size: 1.8rem;
    }
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stacks the contact info on top of the map */
        gap: 20px;
    }
    .map-container iframe {
        height: 300px; /* Slightly shorter map on phones */
    }
}