/* --- GLOBAL RESET & VARIABLES --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

:root {
    --primary-color: #25D366;
    --dark-bg: #222;
    --light-bg: #f9f9f9;
    --white: #ffffff;
}

body { 
    background-color: var(--light-bg); 
    color: #333; 
    line-height: 1.6; 
}

/* --- NAVIGATION MENU (Fixed to Top Right) --- */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between; /* Pushes Logo left, Links right */
    align-items: center;
    z-index: 1000;
}

.logo { 
    font-size: 2rem; 
    font-weight: bold; 
    color: var(--white);
}
.logo span { color: var(--primary-color); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

/* --- HERO SECTION --- */
header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://curatedevents.com/wp-content/uploads/2025/03/3b01fbf1-83d8-4f7e-a62d-8b707dccb5cc.webp');
    background-size: cover;
    background-position: center; /* Changed from 'right' to 'center' for better mobile viewing */
    height: 80vh;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 { 
    font-size: 4rem; 
    margin-bottom: 0.5rem; 
}

.hero-content h2 { 
    font-size: 1.3rem; 
    font-family: 'Arial Narrow', sans-serif; 
    margin-bottom: 1.5rem; 
    font-weight: normal;
}

.btn { 
    background: var(--primary-color); 
    color: var(--white); 
    padding: 15px 40px; 
    text-decoration: none; 
    border-radius: 30px; /* Softer rounded edges */
    font-weight: bold; 
    transition: 0.3s;
}

.btn:hover {
    background: #1eb956;
    transform: scale(1.05);
}

/* --- INVENTORY & CONTENT --- */
.container { 
    padding: 60px 10%; 
    text-align: center; 
}

.section-title { 
    margin-bottom: 50px; 
    font-size: 2.5rem; 
}

.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px; 
}

/* --- CARDS --- */
.card { 
    background: var(--white); 
    padding: 20px; 
    border-radius: 15px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    transition: 0.3s; 
}

.card:hover { 
    transform: translateY(-10px); 
}

.card-img { 
    height: 220px; 
    border-radius: 10px; 
    margin-bottom: 15px; 
    background-size: cover; 
    background-position: center; 
}

.wa-link { 
    display: inline-block; 
    margin-top: 15px; 
    color: var(--primary-color); 
    text-decoration: none; 
    font-weight: bold; 
    border: 2px solid var(--primary-color); 
    padding: 10px 25px; 
    border-radius: 5px; 
    transition: 0.3s;
}


.wa-link:hover { 
    background: var(--primary-color); 
    color: var(--white); 
}

/* --- FLOATING WHATSAPP --- */
.whatsapp-float {
    position: fixed; 
    width: 65px; 
    height: 65px; 
    bottom: 40px; 
    right: 40px;
    background-color: var(--primary-color); 
    color: var(--white); 
    border-radius: 50px; 
    text-align: center;
    font-size: 35px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
    z-index: 1000;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- FOOTER --- */
footer { 
    background: var(--dark-bg); 
    color: var(--white); 
    padding: 30px; 
    text-align: center; 
    margin-top: 50px; 
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    nav { flex-direction: column; gap: 15px; padding: 20px; }
    .logo { position: static; margin-bottom: 10px; }
}
/* Map Section */
.map-section {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

.map-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Map Container */
.map-container {
    max-width: 1100px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
/* Map Section */
.map-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.map-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Map Container */
.map-container {
    max-width: 1100px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Map Action Buttons */
.map-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.map-btn {
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s ease;
}

.map-btn:hover {
    transform: scale(1.05);
}

.call-btn {
    background-color: #25D366;
}

.direction-btn {
    background-color: #1a73e8;
}

