/* ============================================
   Kaz Lagon - Luxury Static Website Styles
   Design System: Warm Minimalist Tropical
   ============================================ */

/* CSS Variables - Warm Neutral Palette */
:root {
    /* Primary Backgrounds */
    --bg-primary: #fffef2;
    --bg-secondary: #f6f5e8;
    --bg-subtle: #ebeade;
    
    /* Text Hierarchy */
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #bcbbb4;
    --text-meta: #4a4a4a;
    
    /* Interactive States */
    --interactive-base: #333333;
    --interactive-hover: #000000;
    --focus-outline: #252525;
    
    /* Borders */
    --border-light: #bcbbb4;
    --border-medium: #cccccc;
    --border-subtle: rgba(51,51,51,0.2);
    
    /* Status Colors */
    --status-error: #ba3e2b;
    --status-success: #4a4a4a;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography System */
.hero-title {
    font-family: 'Crimson Text', serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--bg-primary);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--bg-primary);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--bg-primary);
    max-width: 600px;
}

.heading-1 {
    font-family: 'Crimson Text', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.heading-2 {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.heading-3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.body-large {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
}

.body-regular {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
}

.body-small {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Layout System */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 120px 0;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-secondary);
}

.bg-secondary {
    background-color: var(--bg-secondary);
}

.text-center {
    text-align: center;
}

.grid-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Navigation */
.navigation-header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.navigation-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.navigation-logo {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.navigation-logo:hover {
    opacity: 0.7;
}

.navigation-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navigation-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.navigation-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

.navigation-link:hover:after,
.navigation-link.active:after {
    width: 100%;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-image {
    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: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 254, 242, 0.15);
    backdrop-filter: blur(12px);
    padding: 12px 24px;
    border-radius: 0;
    border: 1px solid rgba(255, 254, 242, 0.3);
    color: var(--bg-primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

/* Buttons */
.btn-primary {
    background: transparent;
    color: var(--interactive-base);
    border: 1px solid var(--interactive-base);
    border-radius: 0;
    padding: 19px 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--interactive-base);
    color: var(--bg-primary);
}

.hero-section .btn-primary {
    color: var(--bg-primary);
    border-color: var(--bg-primary);
}

.hero-section .btn-primary:hover {
    background: var(--bg-primary);
    color: var(--interactive-base);
}

.btn-secondary {
    background: none;
    border: none;
    padding: 19px 32px;
    font-size: 14px;
    font-weight: 600;
    color: var(--interactive-base);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.hero-section .btn-secondary {
    color: var(--bg-primary);
}

.btn-secondary:after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 32px;
    width: 0;
    height: 1px;
    background: var(--interactive-base);
    transition: width 0.3s ease;
}

.hero-section .btn-secondary:after {
    background: var(--bg-primary);
}

.btn-secondary:hover:after {
    width: calc(100% - 64px);
}

/* Features Section */
.content-block {
    padding-right: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

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

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 40px 0;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 14px;
}

.equipment-item svg {
    flex-shrink: 0;
    color: var(--text-primary);
}

.info-box {
    background: var(--bg-secondary);
    padding: 32px;
    margin-top: 40px;
}

.image-block {
    position: relative;
}

.full-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Experiences Section */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.experience-card {
    background: var(--bg-primary);
    padding: 40px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.experience-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
    color: var(--text-primary);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

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

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

.gallery-overlay span {
    color: var(--bg-primary);
    font-size: 16px;
    font-weight: 600;
}

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

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

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 60px auto;
}

.pricing-card {
    background: var(--bg-primary);
    padding: 48px;
    border: 1px solid var(--border-light);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pricing-featured {
    border-color: var(--text-primary);
    border-width: 2px;
}

.pricing-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.price {
    font-family: 'Crimson Text', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--text-primary);
}

.period {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-info {
    max-width: 900px;
    margin: 60px auto 0;
    background: var(--bg-primary);
    padding: 48px;
    border: 1px solid var(--border-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.info-item svg {
    flex-shrink: 0;
    color: var(--text-primary);
}

.booking-process {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    background: var(--bg-primary);
    padding: 48px;
    border: 1px solid var(--border-light);
}

/* Info Section */
.info-block h3 {
    margin-top: 0;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.rules-list,
.proximity-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.rules-list li {
    padding-left: 24px;
    position: relative;
}

.rules-list li:before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--text-primary);
}

.proximity-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proximity-list svg {
    flex-shrink: 0;
    color: var(--text-primary);
}

.map-placeholder {
    position: relative;
    margin-top: 32px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-primary);
    background: rgba(0, 0, 0, 0.6);
    padding: 24px 32px;
    backdrop-filter: blur(4px);
}

.map-overlay p {
    margin-top: 8px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 40px;
    border: 1px solid var(--border-light);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-method svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--text-primary);
}

.contact-method div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-method strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-method span {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.contact-buttons .btn-primary,
.contact-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border: 1px solid var(--border-medium);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 80px 0 40px;
    margin-top: 120px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--bg-primary);
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--bg-secondary);
}

.footer h4 {
    color: var(--bg-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--bg-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--bg-primary);
}

.footer-contact p {
    color: var(--bg-secondary);
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 254, 242, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: var(--bg-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .grid-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-block {
        padding-right: 0;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .navigation-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border-light);
        gap: 16px;
    }
    
    .navigation-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .heading-1 {
        font-size: 28px;
    }
    
    .heading-2 {
        font-size: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .full-image {
        height: 400px;
    }
    
    .pricing-card,
    .pricing-info,
    .booking-process {
        padding: 32px 24px;
    }
}

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

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

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--focus-outline);
    outline-offset: 4px;
}