@import url('navbar.css');
@import url('hero.css');
@import url('about.css');
@import url('intimate-events.css');
@import url('amenities.css');
@import url('rates.css');
@import url('gallery.css');
@import url('reviews.css');
@import url('contact.css');
@import url('booking/layout.css');
@import url('booking/modal.css');
@import url('booking/responsive.css');

/* Modern Design System Variables - Coastal/Olive Garden Theme */
:root {
    /* Color Palette - Coastal/Olive Garden Vacation Theme */
    --primary-50: #f7f9f4;
    --primary-100: #eef2e8;
    --primary-200: #dde7d4;
    --primary-300: #c4d4b8;
    --primary-400: #a3bc94;
    --primary-500: #7fa06b;
    --primary-600: #5d8a4a;
    --primary-700: #4a6f3b;
    --primary-800: #3d5a31;
    --primary-900: #334a2a;
    
    /* Brand Colors - Coastal/Olive Garden */
    --brand-primary: #5d8a4a; /* Olive Green */
    --brand-secondary: #7fa06b; /* Sage Green */
    --brand-accent: #4a6f3b; /* Dark Olive */
    --brand-light: #eef2e8; /* Light Sage */
    --brand-dark: #334a2a; /* Deep Olive */
    
    /* Coastal Accent Colors */
    --coastal-blue: #4a90a4; /* Ocean Blue */
    --coastal-teal: #5ba3a3; /* Sea Teal */
    --coastal-sand: #d4c4a8; /* Sand Beige */
    --coastal-cream: #f5f1e8; /* Cream */
    --coastal-warm: #e8d5c4; /* Warm Sand */
    
    /* Semantic Colors */
    --success: #5d8a4a; /* Olive Green */
    --warning: #d4c4a8; /* Sand */
    --error: #a45d5d; /* Muted Red */
    --info: #4a90a4; /* Ocean Blue */
    
    /* Neutral Colors - Warm Coastal Tones */
    --white: #ffffff;
    --gray-50: #fafaf8;
    --gray-100: #f5f1e8; /* Cream */
    --gray-200: #e8d5c4; /* Warm Sand */
    --gray-300: #d4c4a8; /* Sand */
    --gray-400: #b8a99a; /* Muted Sand */
    --gray-500: #8a7c6e; /* Warm Gray */
    --gray-600: #6b5d4f; /* Deep Warm Gray */
    --gray-700: #4a3d2f; /* Rich Brown */
    --gray-800: #2d1f11; /* Deep Brown */
    --gray-900: #1a0f05; /* Almost Black */
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(93 138 74 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(93 138 74 / 0.1), 0 2px 4px -2px rgb(93 138 74 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(93 138 74 / 0.1), 0 4px 6px -4px rgb(93 138 74 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(93 138 74 / 0.1), 0 8px 10px -6px rgb(93 138 74 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(93 138 74 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --container-max-width: 1200px;
    --section-padding: var(--space-12);
    --section-padding-mobile: var(--space-6);
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin-bottom: var(--space-4);
    color: var(--gray-600);
}

a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

a:hover {
    color: var(--brand-accent);
}

/* Images */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.btn:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--brand-accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background-color: var(--gray-200);
    border-color: var(--gray-400);
}

.btn-outline {
    background-color: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
    background-color: var(--brand-primary);
    color: var(--white);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* Section Layouts */
.section {
    padding: var(--section-padding) 0;
}

.section-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-6);
    margin: var(--space-4) 0;
    border: 1px solid var(--gray-200);
    margin-left: auto;
    margin-right: auto;
}

.section-separator {
    width: 80%;
    max-width: 400px;
    margin: var(--space-10) auto;
    border: none;
    border-top: 1px solid var(--gray-200);
    opacity: 0.6;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }
.text-6xl { font-size: var(--text-6xl); }

/* Responsive Design */
@media (max-width: 640px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    .container {
        padding: 0 var(--space-3);
    }
    
    .section-card {
        padding: var(--space-4);
        margin: var(--space-3) 0;
    }
    
    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }
    h3 { font-size: var(--text-2xl); }
    h4 { font-size: var(--text-xl); }
    h5 { font-size: var(--text-lg); }
    h6 { font-size: var(--text-base); }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1025px) {
    .container {
        padding: 0 var(--space-8);
    }
}

/* 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: 0;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Print styles */
@media print {
    .section-separator {
        display: none;
    }
    
    .btn {
        border: 1px solid var(--gray-400);
        background: var(--white);
        color: var(--gray-900);
    }
}

.page-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1vw;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(93,138,74,0.07), 0 1.5px 8px rgba(93,138,74,0.04);
    position: relative;
}

@media (max-width: 900px) {
    .page-container {
        padding: 0 10px;
        border-radius: 14px;
    }
}

@media (max-width: 600px) {
    .page-container {
        padding: 0 2vw;
        border-radius: 10px;
        margin: 10px 0 0 0;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  /* Ensure buttons and interactive elements have proper touch targets */
  .btn, button, a, [role="button"] {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
  }
  
  /* Improve touch feedback for buttons */
  .btn:active, button:active, a:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  /* Prevent text selection on touch */
  .btn, button, a {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Ensure proper scrolling behavior */
  html, body {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: auto;
  }
}

.form-feedback {
  margin-bottom: 1em;
  font-size: 1.05em;
  border-radius: 6px;
  padding: 0.7em 1em;
  background: var(--primary-100);
  color: var(--brand-primary);
  font-weight: 500;
  outline: none;
}
.form-feedback--error {
  background: #ffeaea;
  color: #a45d5d;
  border: 1.5px solid #a45d5d;
}
.form-feedback--success {
  background: #e8fbe8;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}

/* Force remove checkmark from about features - override everything */
.about__feature::before {
    display: none !important;
    content: '' !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}