/* Camaradvipa Hotel - Natural Organic Theme */
:root {
    --primary-forest: #1A4D2E;
    --primary-light: #4F6F52;
    --accent-wood: #D4A373;
    --accent-sand: #E9E5D6;
    --bg-natural: #FAF9F6;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-premium: 0 20px 40px rgba(26, 77, 46, 0.1);
    --radius-lg: 24px;
    --radius-md: 16px;
}

/* Trial Mode Custom Styles */
.trial-mode-banner {
    background: linear-gradient(90deg, #fffbeb 0%, #fef3c7 100%);
    border-bottom: 1.5px solid #fcd34d;
    color: #92400e;
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: 'Montserrat', sans-serif;
}
.trial-mode-banner i {
    animation: trial-pulse 2s infinite ease-in-out;
}
@keyframes trial-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

body {
    background-color: var(--bg-natural);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
    padding-top: 45px; /* Offset for trial banner */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navbar */
.hotel-nav {
    position: fixed;
    top: 45px; /* Shifted down for the trial banner */
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.hotel-nav.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 15px 80px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
}

.hotel-nav.scrolled .nav-brand {
    color: var(--primary-forest);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.hotel-nav.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--accent-wood) !important;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Hero Section */
.hotel-hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1542718610-a1d656d1884c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    border-radius: 0 0 80px 80px;
    margin-bottom: -60px;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Booking Bar - Glassmorphism */
.booking-bar {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    display: flex;
    gap: 20px;
    align-items: flex-end;
    position: relative;
    z-index: 10;
}

.booking-group {
    flex: 1;
}

.booking-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-forest);
    text-transform: uppercase;
}

.booking-group input, .booking-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    font-family: inherit;
}

.btn-book {
    background: var(--primary-forest);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 77, 46, 0.2);
}

/* Room Cards */
.room-section {
    padding: 120px 0 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header span {
    color: var(--accent-wood);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-forest);
    margin-top: 10px;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.room-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-premium);
}

.room-img-wrapper {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.room-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-img-wrapper img {
    transform: scale(1.1);
}

.room-price-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-forest);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
}

.room-info {
    padding: 30px;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-forest);
}

.room-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.room-meta i {
    color: var(--accent-wood);
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--primary-forest);
    color: var(--primary-forest);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-forest);
    color: white;
}

/* About Us Section */
.about-section {
    padding: 120px 0;
    text-align: center;
    background: white;
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary-forest);
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 2;
}

/* Facilities Section */
.facilities-section {
    padding: 100px 0;
    background: var(--accent-sand);
}

.fac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.fac-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
}

.fac-card:hover {
    transform: translateY(-10px);
}

.fac-card i {
    font-size: 2.5rem;
    color: var(--primary-forest);
    margin-bottom: 20px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 120px 0;
    background: var(--primary-forest);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 15rem;
    opacity: 0.1;
    line-height: 1;
}

.test-card {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 20px 60px;
}

.test-card p {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 40px;
    line-height: 1.5;
}

.test-author {
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 1.1rem;
    color: var(--accent-sand);
}

/* Swiper Custom */
.swiper-button-next, .swiper-button-prev {
    color: white !important;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    opacity: 1;
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 50px;
}

.gal-item {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gal-item:hover img {
    transform: scale(1.1);
}

/* Page Header (Interior) */
.page-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.page-header-content p {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
