/* Global Styles */
:root {
    --primary-color: #8B7355;
    --secondary-color: #D2B48C;
    --accent-color: #F5DEB3;
    --text-dark: #2F2F2F;
    --text-light: #6B6B6B;
    --bg-light: #F8F6F3;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Navigation */
.navbar {
    background-color: rgba(139, 115, 85, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
}

/* Logo in navbar */
.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    display: block;
}

.navbar-brand i {
    margin-right: 8px;
    color: var(--accent-color);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B7355 0%, #D2B48C 100%);
    background-image: url('../images/gallery/night.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 115, 85, 0.7);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.stars {
    margin-right: 10px;
}

.stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-text {
    color: var(--white);
    font-weight: 600;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #7A6347;
    border-color: #7A6347;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 115, 85, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 115, 85, 0.3);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Video Section */
.video-section {
    background-color: var(--bg-light);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
}

/* About Preview */
.about-preview img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.about-preview img:hover {
    transform: scale(1.02);
}

/* Around Us Preview */
.attraction-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.attraction-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.attraction-card .card-body {
    padding: 1.5rem;
}

.attraction-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.distance {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.distance i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Accommodation Preview */
.room-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-card .card-body {
    padding: 1.5rem;
}

.room-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.room-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Amenities Preview */
.amenity-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.amenity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.amenity-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.amenity-item p {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Gallery Preview */
.gallery-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Preview */
.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form .form-control {
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 115, 85, 0.25);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .video-container iframe {
        height: 300px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-link {
        margin: 5px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 60px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: var(--white);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--accent-color);
}

/* Additional Components */
.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    margin: 0;
}

.award-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.award-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.award-card h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.award-card p {
    color: var(--text-light);
    margin: 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-card .stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.guest-info strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.guest-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.activity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.activity-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.activity-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.activity-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.activity-card .duration {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.culture-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.culture-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.culture-card .card-body {
    padding: 1.5rem;
}

.culture-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.culture-card p {
    color: var(--text-light);
    margin: 0;
}

.transport-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.transport-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.transport-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.transport-card p {
    color: var(--text-light);
    margin: 0;
}

.room-detail-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.room-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.room-images {
    position: relative;
}

.room-images .main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.room-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--bg-light);
}

.room-thumbnails .thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.room-thumbnails .thumbnail:hover {
    opacity: 0.8;
}

.room-info {
    padding: 2rem;
}

.room-info h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.room-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.room-features,
.room-amenities {
    margin-bottom: 1.5rem;
}

.room-features h5,
.room-amenities h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.room-features ul,
.room-amenities ul {
    list-style: none;
    padding: 0;
}

.room-features li,
.room-amenities li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.room-features i,
.room-amenities i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.season-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.season-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.season-period {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.season-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.rate-increase {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
}

.rate-decrease {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.1rem;
}

.rate-normal {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.amenity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.amenity-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.amenity-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.amenity-card p {
    color: var(--text-light);
    margin: 0;
}

.dining-info h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.dining-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.dining-info ul {
    list-style: none;
    padding: 0;
}

.dining-info li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.dining-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.meal-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.meal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.meal-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.meal-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.meal-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.meal-card .time {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.activity-detail-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.activity-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.activity-detail-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-detail-card .card-body {
    padding: 1.5rem;
}

.activity-detail-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.activity-detail-card h4 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.activity-detail-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.activity-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.activity-details span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.activity-details i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 16px;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-card .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.rules-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
}

.rules-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.rules-card h4 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.rules-card ul {
    list-style: none;
    padding: 0;
}

.rules-card li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
}

.rules-card li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7A6347;
}
