/* Custom CSS for Meera Resort - Revised for Local Images */

:root {
    --primary-gold: #D4A040;
}
/* Custom Scrollbar for better feel */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background: #D4A040;
    border-radius: 10px;
}
/* Container Size Adjustment */
.max-w-7xl, .max-w-\[1600px\] {
    max-width: 1600px !important;
}
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Sidebar Classes */
#sidebar.open {
    transform: translateX(0);
}

#sidebarOverlay.show {
    opacity: 1;
    visibility: visible;
}

/* Hamburger Animation (Optional but Premium) */
#menuBtn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
#menuBtn.active span:nth-child(2) {
    opacity: 0;
}
#menuBtn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Nav Link Hover */
/* Nav Link Styles */
.nav-link {
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Hover state line */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #D4A040; /* Gold color */
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Active state line - Je page open hoy ema line fix rahese */
.nav-link.active {
    color: #D4A040;
}

.nav-link.active::after {
    width: 100%;
}
/* Logo Styling */
.logo h1 {
    display: flex;
    flex-direction: column; /* Mobile ma upar-niche rakhva mate */
    line-height: 0.9;
    letter-spacing: -0.02em;
}

/* "The Meera" part */
.logo .brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

/* "Resort" part */
.logo .brand-sub {
    font-family: 'Playfair Display', serif;
    font-size: 0.7em; /* Main name thi thodu nanu */
    margin-left: 2px;
    color: #D4A040;
    position: relative;
}

/* Desktop mate side-by-side view */
@media (min-width: 768px) {
    .logo h1 {
        flex-direction: row;
        align-items: baseline;
    }
    
    .logo .brand-sub {
        margin-left: 10px;
    }
}

/* Logo Hover Effect */
.logo:hover .brand-sub {
    color: #b88a36;
    transition: all 0.3s ease;
    transform: skewX(-5deg); /* Halku italic transition */
}
/* ----------------------------------------------------------- */
/* BACKGROUND IMAGE SETTING - REVISED FOR RELATIVE PATH */
/* ----------------------------------------------------------- */
.hero-section {
    /* "assets/..." (vagar forward slash "/") chhe, karan ke style.css 
       ane assets folder banne same main folder ma chhe. */
    background: url('assets/image/hero.jpg') no-repeat center center/cover;
    
    /* Jo upar no path kaam na kare, to niche no alternative path try karo (uncomment karyo vagar): */
    /* background: url('./assets/image/hero.jpg') no-repeat center center/cover; */
}
/* ----------------------------------------------------------- */

/* About Section specific styles */
.font-serif span.italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Section Fade-in effect when scrolling (Optional) */
section {
    opacity: 1;
    transition: opacity 0.8s ease-out;
}
/* Featured Section Specifics */
#F9F6F0 {
    background-color: #f9f6f0;
}

/* Green Button Color as per image */
.bg-\[\#3A5A40\] {
    background-color: #3a5a40;
}

/* Icons styling if needed */
.room-icon-fix {
    font-size: 1.2rem;
    line-height: 1;
}

/* Section transition */
.group:hover img {
    transform: scale(1.08);
}

/* Amenity Card Styling */
/* Amenities Section Styles */
.amenity-card {
    background-color: #ffffff;
    cursor: pointer;
    border: 1px solid #f3f4f6;
}

/* Icon Container Color */
.bg-\[\#E9F0EC\] {
    background-color: #e9f0ec;
}

/* Icon Color */
.text-\[\#3A5A40\] {
    color: #3a5a40;
}

/* Hover effect refinements */
.amenity-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

/* Custom Animation for Scroll Icon */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h2 {
        font-size: 3.5rem;
        
    }
    .lg\:grid-cols-2 img {
        height: 350px;
    }
}
@media (min-width: 1024px) {
    .hero-section {
        background-attachment: fixed;
    }
}

/* Booking bar input fixes */
input[type="date"] {
    position: relative;
    -webkit-appearance: none;
}

/* Custom fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Dropdown arrow fix */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4A040'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1rem;
}





.hotel-reviews-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.hotel-reviews-section .container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.review-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}
.review-card:hover {
    transform: translateY(-5px);
}
.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.guest-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}
.guest-name {
    margin: 0;
    font-size: 1rem;
    color: #333;
}
.review-date {
    font-size: 0.8rem;
    color: #777;
}
.star-rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.review-comment {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin: 0;
}