/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    --color-dark-green: #18322F;
    --color-light-green: #5A905C;
    --color-hover-green: #9ED9B6;
    --color-promo-red: #A52222;
    --color-dark-gray: #32373c;
    --color-light-bg: #f8faf9;
    --color-white: #ffffff;
    --color-text: #4a4a4a;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.08);
    --shadow-hard: 0 20px 50px rgba(24, 50, 47, 0.15);
    
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --border-radius-pill: 50px;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-light-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark-green);
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: var(--color-light-green);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-dark-green);
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-dark-green);
    color: var(--color-white) !important;
    box-shadow: 0 4px 15px rgba(24, 50, 47, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-light-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 144, 92, 0.3);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24, 50, 47, 0.8) 0%, rgba(90, 144, 92, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-light-green);
    color: var(--color-white);
    border-radius: var(--border-radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--color-white);
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-filter-white {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   Main Layout
   ========================================================================== */
.main-content {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

/* ==========================================================================
   Description Section
   ========================================================================== */
.description-section h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-text {
    font-size: 1.25rem;
    color: var(--color-light-green);
    font-weight: 500;
    margin-bottom: 40px;
    font-family: var(--font-heading);
}

.text-block {
    margin-bottom: 40px;
    position: relative;
    padding-left: 30px;
    border-left: 3px solid rgba(90, 144, 92, 0.2);
}

.text-block h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-dark-green);
}

.text-block p {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.text-block p:last-child {
    margin-bottom: 0;
}

.conclusion {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--color-dark-green);
    color: var(--color-white);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.conclusion p {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.conclusion .tagline {
    font-size: 1.2rem;
    color: var(--color-hover-green);
    margin-top: 10px;
    font-style: italic;
}

/* ==========================================================================
   Booking Section
   ========================================================================== */
.booking-section {
    position: sticky;
    top: 40px;
}

.booking-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hard);
    border: 1px solid rgba(24, 50, 47, 0.05);
}

.booking-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.booking-card p {
    color: #666;
    margin-bottom: 30px;
}

#ESKexperienceBox {
    min-height: 400px;
    /* Wrapper styles for the widget */
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--color-dark-green);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 40px;
    font-size: 0.95rem;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo {
    max-height: 80px;
    height: auto;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-details strong {
    color: var(--color-white);
    font-size: 1.2rem;
    font-family: var(--font-heading);
    margin-bottom: 8px;
    display: block;
}

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

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

.footer-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    margin: 60px 0;
}

.gallery-section h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--color-dark-green);
}

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

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-medium);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .layout-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-section {
        position: static;
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-item {
        width: 100%;
        justify-content: center;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .description-section h2 {
        font-size: 2rem;
    }
    
    .booking-card {
        padding: 24px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 40px;
    }
}
