/* ===================================
   Rivero Resort Dirang - Main Stylesheet
   Mountain Lodge Aesthetic with Modern Touch
   =================================== */

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --mountain-green: #2B5230;
    --warm-wood: #B37A45;
    --off-white: #F8F8F8;
    --white: #FFFFFF;
    --dark-gray: #333333;
    --light-gray: #666666;
    --border-color: #E5E5E5;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark-gray);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--mountain-green);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--mountain-green);
    color: var(--white);
    border-color: var(--mountain-green);
}

.btn-primary:hover {
    background-color: #1f3a23;
    border-color: #1f3a23;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 82, 48, 0.3);
}

.btn-secondary {
    background-color: var(--warm-wood);
    color: var(--white);
    border-color: var(--warm-wood);
}

.btn-secondary:hover {
    background-color: #9a6638;
    border-color: #9a6638;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(179, 122, 69, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--mountain-green);
    border-color: var(--mountain-green);
}

.btn-outline:hover {
    background-color: var(--mountain-green);
    color: var(--white);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Top Bar */
.nav-top-bar {
    background: linear-gradient(135deg, var(--mountain-green) 0%, #1f3a23 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.top-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    opacity: 0.95;
    transition: var(--transition-smooth);
}

.top-link:hover {
    opacity: 1;
    color: var(--warm-wood);
}

.social-links-top {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--warm-wood);
    transform: translateY(-3px);
}

/* Main Nav */
.nav-main {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-link:hover .logo-image {
    transform: scale(1.02);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--mountain-green);
    line-height: 1.2;
}

.logo-text .tagline {
    font-size: 0.7rem;
    color: var(--warm-wood);
    font-style: italic;
    margin: 0;
    font-weight: 400;
}

/* Mobile logo adjustment */
@media (max-width: 768px) {
    .logo-link {
        gap: 10px;
    }
    
    .logo-image {
        height: 42px;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .logo-text .tagline {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    
    .logo-image {
        height: 45px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a:not(.btn-book)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--mountain-green);
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-book):hover::after,
.nav-menu a:not(.btn-book).active::after {
    width: 100%;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    background: linear-gradient(135deg, #25D366 0%, #1ea952 100%);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-book:hover {
    background: linear-gradient(135deg, #1ea952 0%, #128C7E 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-book svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--mountain-green);
    margin: 3px 0;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* ===== HERO SECTION WITH SLIDER ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 106px;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 68px;
    }
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

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

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero-tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 40px;
    color: var(--off-white);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Slider Navigation */
.hero .owl-nav button.owl-prev,
.hero .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3) !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 100;
}

.hero .owl-nav button.owl-prev {
    left: 30px;
}

.hero .owl-nav button.owl-next {
    right: 30px;
}

.hero .owl-nav button.owl-prev:hover,
.hero .owl-nav button.owl-next:hover {
    background: var(--mountain-green) !important;
}

.hero .owl-nav button svg {
    stroke: var(--white);
}

.hero .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.hero .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 8px;
}

.hero .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    display: block;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.hero .owl-dots .owl-dot.active span,
.hero .owl-dots .owl-dot:hover span {
    background: var(--white);
    width: 40px;
    border-radius: 7px;
}

/* Mobile Hero Styles */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero .owl-nav button.owl-prev,
    .hero .owl-nav button.owl-next {
        width: 45px;
        height: 45px;
    }
    
    .hero .owl-nav button.owl-prev {
        left: 15px;
    }
    
    .hero .owl-nav button.owl-next {
        right: 15px;
    }
    
    .hero .owl-dots {
        bottom: 20px;
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--section-padding);
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--off-white);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: var(--mountain-green);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-images img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ===== ROOMS PREVIEW SECTION ===== */
.rooms-preview {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--light-gray);
    font-size: 1.1rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Responsive rooms grid */
@media (min-width: 1200px) {
    .rooms-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.room-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.room-image {
    height: 250px;
    overflow: hidden;
}

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

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

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.room-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--warm-wood);
    margin-bottom: 20px;
}

.room-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--light-gray);
}

.room-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.room-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.room-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mountain-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--mountain-green) 0%, #1f3a23 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--mountain-green) 0%, #1f3a23 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== ROOMS DETAIL PAGE ===== */
.rooms-section {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

.room-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.room-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-detail-info {
    padding: 40px;
}

.room-detail-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.room-detail-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--warm-wood);
    margin-bottom: 20px;
}

.room-detail-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-gray);
}

.room-description {
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.room-amenities h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.room-amenities ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.room-amenities li {
    display: flex;
    align-items: flex-start;
    color: var(--light-gray);
    font-size: 0.95rem;
}

.room-amenities li::before {
    content: "✓";
    color: var(--mountain-green);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* ===== BOOKING INFO ===== */
.booking-info {
    padding: 60px 0;
    background-color: var(--white);
}

.booking-info-content h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--mountain-green);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-card p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* ===== GALLERY PAGE ===== */
.gallery-section {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 82, 48, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-icon {
    color: var(--white);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    font-size: 30px;
    padding: 20px 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ===== RESTAURANT PAGE ===== */
.restaurant-hero {
    padding: var(--section-padding);
    background-color: var(--white);
}

.restaurant-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.restaurant-hero-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.restaurant-hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.restaurant-hero-text p {
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.cafe-section {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

.cafe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cafe-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cafe-text p {
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cafe-highlights {
    padding-left: 20px;
}

.cafe-highlights li {
    color: var(--light-gray);
    margin-bottom: 10px;
    position: relative;
}

.cafe-highlights li::before {
    content: "☕";
    position: absolute;
    left: -25px;
}

.cafe-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.menu-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.menu-card {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-icon {
    color: var(--warm-wood);
    margin-bottom: 20px;
}

.menu-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.menu-card > p {
    color: var(--warm-wood);
    font-weight: 600;
    margin-bottom: 20px;
}

.menu-card ul li {
    color: var(--light-gray);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.menu-card ul li:last-child {
    border-bottom: none;
}

.dining-features {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

.dining-features-content h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item svg {
    color: var(--mountain-green);
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* ===== LOCATION PAGE ===== */
.location-section {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.address-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.address-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.address-card p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-details {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-details p {
    color: var(--light-gray);
    margin-bottom: 10px;
}

.contact-details a {
    color: var(--mountain-green);
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--warm-wood);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.reach-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.reach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reach-card {
    background-color: var(--off-white);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

.reach-icon {
    color: var(--mountain-green);
    margin-bottom: 20px;
}

.reach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.reach-card p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.attractions-section {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.attraction-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.attraction-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.attraction-card p {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 10px;
}

.distance {
    color: var(--warm-wood);
    font-weight: 600;
    font-size: 0.9rem;
}

.info-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.info-content h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ===== BLOG PAGE ===== */
.blog-section {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-date,
.blog-category {
    font-size: 0.85rem;
    color: var(--warm-wood);
    font-weight: 600;
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-content h2:hover {
    color: var(--warm-wood);
}

.blog-content > p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-read-more {
    color: white;
    background-color: var(--mountain-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--mountain-green);
    font-size: 14px;
}

.blog-read-more:hover {
    background-color: var(--warm-wood);
    border-color: var(--warm-wood);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.newsletter-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--warm-wood) 0%, #9a6638 100%);
    text-align: center;
    color: var(--white);
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-secondary);
}

.newsletter-form button {
    padding: 15px 35px;
}

/* ===== BLOG POST PAGE ===== */
.blog-post {
    padding: var(--section-padding);
    background-color: var(--white);
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-header {
    margin-bottom: 40px;
}

.blog-post-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark-gray);
}

.blog-post-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.blog-post-content li {
    margin-bottom: 10px;
    color: var(--light-gray);
}

.blog-post-content strong {
    color: var(--mountain-green);
}

.blog-post-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
}

/* ===== OWL CAROUSEL GALLERY SLIDER ===== */
.gallery-slider-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.gallery-owl-slider {
    padding: 20px 0;
}

.gallery-slide-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-slide-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-slide-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 20px 15px 15px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-slide-item:hover .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Owl Carousel Custom Styling */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--mountain-green) !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -60px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -60px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--warm-wood) !important;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.owl-carousel .owl-nav button svg {
    stroke: var(--white);
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    display: block;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--mountain-green);
    width: 30px;
    border-radius: 6px;
}

/* Mobile Owl Navigation */
@media (max-width: 1200px) {
    .owl-carousel .owl-nav button.owl-prev {
        left: -30px;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
    }
    
    .owl-carousel .owl-nav button.owl-prev {
        left: 10px;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: 10px;
    }
    
    .gallery-slide-item img {
        height: 250px;
    }
}

/* ===== HOME LOCATION SECTION ===== */
.home-location-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.home-location-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: start;
}

.location-info-box {
    background: var(--off-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.location-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.location-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mountain-green) 0%, #1f3a23 100%);
    border-radius: 50%;
    color: var(--white);
}

.location-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.location-text p {
    margin-bottom: 8px;
    line-height: 1.7;
}

.location-text a {
    color: var(--mountain-green);
    font-weight: 500;
}

.location-text a:hover {
    color: var(--warm-wood);
}

.location-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.home-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.home-map-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Responsive Home Location */
@media (max-width: 1024px) {
    .home-location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-info-box {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .location-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .location-text {
        text-align: center;
    }
    
    .home-map-wrapper {
        height: 400px;
    }
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: linear-gradient(135deg, var(--mountain-green) 0%, #1f3a23 100%);
    color: var(--white);
    padding: 0;
    margin-top: 50px;
}

.footer-wave {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 45px;
    fill: var(--mountain-green);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 25px;
    padding: 25px 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-about h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.footer-section p {
    margin-bottom: 12px;
    opacity: 0.9;
    line-height: 1.8;
}

.footer-section a {
    color: var(--white);
    opacity: 0.9;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--warm-wood);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background-color: var(--warm-wood);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 5px;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .about-content,
    .restaurant-hero-content,
    .cafe-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .room-detail {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 20px 0 15px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 0;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Hero */
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Sections */
    .section-header h2,
    .cta-content h2,
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .about-text h2,
    .restaurant-hero-text h2,
    .cafe-text h2,
    .location-info h2 {
        font-size: 2rem;
    }
    
    /* Room Detail */
    .room-detail-info {
        padding: 30px 20px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    /* Forms */
    .newsletter-form {
        flex-direction: column;
    }
    
    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px 0 12px;
    }
    
    .footer-bottom {
        padding: 12px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .footer-credits {
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Typography */
    .hero-headline {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    /* Spacing */
    :root {
        --section-padding: 50px 0;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    /* Cards */
    .room-card,
    .feature-card,
    .blog-card {
        margin: 0 10px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .lightbox-nav {
        font-size: 20px;
        padding: 15px 10px;
    }
    
    .lightbox-close {
        right: 20px;
        font-size: 40px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .cta-section,
    .newsletter-section,
    .footer {
        display: none;
    }
    
    body {
        background-color: var(--white);
    }
}

