/* ========================================
   Swarna Villa Guest House Stylesheet
   Theme: Royal Maroon & Gold Mandala
========================================
*/

:root {
    --primary-maroon: #800000; 
    --accent-gold: #FBE7B2;     /* Light Gold (for dark backgrounds) */
    --gold-dark: #B8860B;       /* Dark Gold/Bronze (for light backgrounds) */
    --text-dark: #333333;      
    --text-light: #ffffff;     
    --bg-cream: #F8F5E6;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-cream);
}

h1, h2, h3, h4, h5, h6, .header-font {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
}

/* --- Utility Classes --- */
.text-gold { color: var(--accent-gold) !important; }
.text-gold1 { color: #FBE7B2 !important; }
/* NEW: Darker gold for visibility on cream backgrounds */
.text-gold-dark { color: var(--gold-dark) !important; } 
.text-maroon { color: var(--primary-maroon) !important; }
.bg-maroon { background-color: var(--primary-maroon) !important; }
.bg-cream { background-color: var(--bg-cream) !important; }
.section-padding { padding: 80px 0; }

/* --- Golden Separator Line --- */
.gold-separator {
    height: 3px;
    width: 80px;
    background-color: var(--gold-dark); /* Made darker for visibility */
    margin: 15px auto 20px;
    position: relative;
}
.gold-separator::after {
    content: '♦';
    color: var(--gold-dark); /* Made darker for visibility */
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    background-color: var(--bg-cream); 
    padding: 0 10px;
}
#attractions .gold-separator::after, #location .gold-separator::after { background-color: #fff; }

/* --- NEW PROFESSIONAL BUTTONS --- */
.btn-gold {
    /* Luxury Gold Gradient */
    background-image: linear-gradient(to right, #D4AF37 0%, #FBE7B2 51%, #D4AF37 100%);
    background-size: 200% auto;
    color: #800000 !important; /* Maroon text for contrast */
    font-weight: 800;
    border: none; /* Removed border for cleaner look */
    padding: 14px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.5s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15); /* Soft shadow */
    cursor: pointer;
}

.btn-gold:hover {
    background-position: right center; /* animate the gradient */
    color: #4a0000 !important;
    text-decoration: none;
    transform: translateY(-3px); /* Lift up slightly */
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4); /* Stronger golden glow */
}

/* --- Navigation Bar Styles --- */
.swarna-navbar {
    background-color: rgba(106, 0, 0, 0.95);
    transition: all 0.3s ease;
    padding: 15px 0;
    border-bottom: 2px solid var(--accent-gold);
}
.swarna-navbar.scrolled {
    background-color: var(--primary-maroon);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 10px 0;
}
.navbar-brand { font-size: 1.5rem; letter-spacing: 1px; }
.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 600;
    margin-left: 10px;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--accent-gold) !important; }
/* Nav Button Specifics */
.nav-link.btn-gold {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* --- HERO SECTION --- */
.hero-section {
    background-image: url('images/hero-banner-full.png');
    background-size: cover;
    background-position: right 20% top;
    background-repeat: no-repeat;
    min-height: 70vh;
    height: auto;
    background-color: #800000;
    position: relative;
    margin-top: 0;
    border-bottom: 4px solid var(--accent-gold); /* Thicker border */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 64px;
}

.hero-section p.lead {
    color: #F8F5E6 !important; 
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Added shadow for readability */
}

.hero-section::before, .hero-section .overlay { display: none; }

.hero-section .container {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

/* --- ROOMS SECTION FIX --- */
.room-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 4px solid var(--gold-dark); /* Darker gold border */
    height: 100%;
}
.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}
.room-img-container { 
    overflow: hidden; 
    height: 250px; 
    flex-shrink: 0; 
}
.room-img-container img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
}
.room-card:hover .room-img-container img { transform: scale(1.05); }
.room-amenities li {
    display: inline-block; margin-right: 15px; margin-top: 10px; font-size: 0.9rem;
}

/* --- Attractions & Location Styles --- */
.border-gold { border-color: var(--gold-dark) !important; }
.border-gold-dashed {
    border: 2px dashed var(--gold-dark);
    border-radius: 8px; background: #fff; transition: all 0.3s;
}
.reach-icon-box:hover {
    background-color: var(--primary-maroon); 
    border-style: solid;
}
.reach-icon-box:hover i { color: var(--accent-gold) !important; }
.reach-icon-box:hover h4, .reach-icon-box:hover p { color: #fff !important; }

.nearby-box { border-radius: 8px; border-top: 4px solid var(--gold-dark); }
.map-container iframe, #attractions img {
    border-radius: 8px;
    border: 3px solid var(--gold-dark) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Footer Styles --- */
footer {
    background-color: #4a0000;
    background-image: linear-gradient(rgba(74, 0, 0, 0.9), rgba(74, 0, 0, 0.95)), url('https://www.transparenttextures.com/patterns/arabesque.png');
    background-blend-mode: multiply;
    border-top: 4px solid var(--accent-gold);
}
.contact-list li { margin-bottom: 12px; }
footer a:hover { color: var(--accent-gold) !important; text-decoration: underline !important; }