/* ============================================ */
/* ELEGANT GREEN HOSPITALITY THEME            */
/* Luxury/Spa Resorts                         */
/* ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');

/* ============================================ */
/* ELEGANT GREEN VARIABLES                     */
/* ============================================ */

:root {
    /* Elegant Green Palette */
    --primary-color: #2d5f3f;          /* Forest Green */
    --primary-dark: #1f4230;           /* Deep Forest */
    --primary-light: #3d7a56;          /* Sage Green */
    --secondary-color: #b8a063;        /* Gold */
    --accent-color: #6d9b7a;           /* Soft Green */
    --accent-secondary: #a89053;       /* Bronze */
    
    /* Background Colors */
    --bg-primary: #ffffff;             /* Pure White */
    --bg-secondary: #f8faf9;           /* Mint White */
    --bg-tertiary: #f0f5f2;            /* Soft Mint */
    --bg-accent: rgba(45, 95, 63, 0.05);
    
    /* Text Colors */
    --text-primary: #1a1a1a;           /* Charcoal */
    --text-secondary: #4a4a4a;         /* Gray */
    --text-muted: #7a7a7a;             /* Light Gray */
    --text-accent: var(--primary-color);
    
    /* Border & Effects */
    --border-color: #d4e0d8;           /* Soft Green Border */
    --border-light: #e4ede7;           /* Very Light Border */
    --shadow-sm: 0 2px 4px rgba(45, 95, 63, 0.08);
    --shadow-md: 0 4px 12px rgba(45, 95, 63, 0.12);
    --shadow-lg: 0 8px 24px rgba(45, 95, 63, 0.16);
    --shadow-xl: 0 12px 32px rgba(45, 95, 63, 0.2);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-secondary));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    --gradient-hero: linear-gradient(135deg, rgba(45, 95, 63, 0.92), rgba(109, 155, 122, 0.88));
    --gradient-card: linear-gradient(145deg, #ffffff, #f8faf9);
    
    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
}

/* ============================================ */
/* GLOBAL BASE STYLES                          */
/* ============================================ */

body {
    background: var(--bg-primary);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.8;
}

html {
    scroll-behavior: smooth;
}

/* ============================================ */
/* TYPOGRAPHY                                  */
/* ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

.section-title {
    color: var(--primary-color);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ============================================ */
/* BUTTONS & INTERACTIVE ELEMENTS             */
/* ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

/* ============================================ */
/* HEADER - ACCOMMODATION                     */
/* ============================================ */

.header-accommodation {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.header-accommodation.sticky {
    box-shadow: var(--shadow-md);
}

.header-topbar {
    background: var(--bg-secondary);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-phone,
.topbar-email {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.topbar-phone:hover,
.topbar-email:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.header-main {
    padding: 1rem 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-logo img {
    max-height: 65px;
    width: auto;
}

.site-logo .logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
    position: relative;
    font-family: var(--font-body);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--bg-secondary);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-call:hover {
    background: var(--primary-color);
    color: white;
}

.btn-book-now {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================ */
/* HERO ACCOMMODATION                          */
/* ============================================ */

.hero-accommodation {
    background: var(--gradient-hero);
    min-height: 650px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: var(--font-heading);
}

.hero-tagline {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-family: var(--font-heading);
    font-style: italic;
}

.hero-description {
    font-size: 1.375rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

/* ============================================ */
/* CARDS                                       */
/* ============================================ */

.room-card,
.facility-card,
.offer-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.room-card:hover,
.facility-card:hover,
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.room-card:hover .card-image img,
.facility-card:hover .card-image img,
.offer-card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.625rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Special Badge */
.offers-banner {
    background: var(--gradient-secondary);
    padding: 0.875rem 0;
    text-align: center;
    color: white;
    font-weight: 600;
    font-family: var(--font-heading);
}

/* ============================================ */
/* FOOTER ACCOMMODATION                        */
/* ============================================ */

.footer-accommodation {
    background: var(--bg-secondary);
    margin-top: 5rem;
}

.footer-newsletter {
    background: var(--gradient-primary);
    padding: 3.5rem 0;
    color: white;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.btn-subscribe {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.btn-subscribe:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ============================================ */
/* FLOATING & UTILITY BUTTONS                  */
/* ============================================ */

.floating-book-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1.125rem 1.75rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 999;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.floating-book-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ============================================ */
/* RESPONSIVE DESIGN                           */
/* ============================================ */

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section-title { font-size: 2.25rem; }
    .hero-title { font-size: 3rem; }
    
    .header-topbar {
        font-size: 0.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-book-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .hero-tagline { font-size: 1.5rem; }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .btn-subscribe {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================ */
/* UTILITY CLASSES                             */
/* ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }