/* 
   Theme: Grand Riverside Premium
   Colors derived from Logo:
   - Primary Dark: #3E1C15 (Deep Brown/Maroon) - Approximated from logo
   - Accent Gold: #C59146 (Gold/Ochre) - Approximated from logo
   - Light: #F9F7F2 (Off-white/Cream)
*/

:root {
    --primary-color: #3E1C15;
    --primary-light: #5a2a20;
    --accent-color: #C59146;
    --accent-hover: #e0a552;
    --bg-color: #F9F7F2;
    --text-color: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(62, 28, 21, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(197, 145, 70, 0.15);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid rgba(197, 145, 70, 0.3);
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

/* Info Card Section */
.info-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

address {
    font-style: normal;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

address p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

address i {
    color: var(--accent-color);
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20BA5C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.map-container {
    height: 100%;
    min-height: 400px;
    background-color: #eee;
}

/* Floating Action Button for Mobile */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20BA5C;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(197, 145, 70, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(197, 145, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 145, 70, 0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .info-card {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 300px;
        order: -1; /* Show map above contact info on mobile if preferred, or keep below */
    }
    
    .contact-details {
        padding: 2rem;
        text-align: center;
    }
    
    address p {
        justify-content: center;
    }
    
    .action-buttons {
        justify-content: center;
    }
}
