/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color System - HSL values */
    --background: hsl(28, 35%, 97%);
    --foreground: hsl(215, 25%, 27%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(215, 25%, 27%);
    --primary: hsl(215, 25%, 27%);
    --primary-foreground: hsl(28, 35%, 97%);
    --secondary: hsl(28, 35%, 95%);
    --secondary-foreground: hsl(215, 25%, 27%);
    --muted: hsl(28, 20%, 94%);
    --muted-foreground: hsl(215, 15%, 50%);
    --accent: hsl(18, 85%, 70%);
    --accent-foreground: hsl(215, 25%, 27%);
    --border: hsl(28, 20%, 88%);
    --slate: hsl(215, 25%, 27%);
    --slate-light: hsl(215, 20%, 45%);
    --navy: hsl(215, 30%, 20%);
    --logo-blue: hsl(207, 72%, 59%);
    --logo-blue-light: hsl(207, 72%, 75%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 247, 246, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 250px;
    height: auto;
    cursor: pointer;
}

.desktop-nav {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    background: transparent;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    padding-top: 0.5rem;
    min-width: 250px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.5rem;
}

.dropdown-menu > div {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu > div a {
    display: block;
    padding: 0.75rem;
    color: var(--foreground);
    text-decoration: none;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.dropdown-menu > div a:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.desktop-cta {
    display: none;
    gap: 1rem;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--accent);
}

.phone-number {
    display: none;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    color: var(--accent-foreground);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: hsl(18, 85%, 65%);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-foreground);
    border: 1px solid var(--logo-blue);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: hsla(207, 72%, 75%, 0.2);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.full-width {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

.mobile-menu {
    position: fixed;
    top: 90px;
    right: 0;
    width: 300px;
    height: calc(100vh - 90px);
    background: var(--background);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    margin-bottom: -0.5rem;
}

.mobile-menu-link {
    padding: 0.5rem 0.75rem;
    color: var(--foreground);
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.mobile-menu-link:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--slate) 0%, var(--navy) 50%, var(--slate) 100%);
    padding-top: 90px;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, hsla(18, 85%, 70%, 0.2) 0%, transparent 50%);
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-in;
}

.hero-accent {
    display: block;
    color: var(--accent);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: hsla(28, 35%, 97%, 0.9);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    background: none;
    border: none;
    color: hsla(28, 35%, 97%, 0.7);
    cursor: pointer;
    transition: color 0.3s;
}

.scroll-indicator:hover {
    color: var(--accent);
}

.scroll-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-alt {
    background-color: var(--muted);
}

.section-dark {
    background: linear-gradient(135deg, var(--slate) 0%, var(--navy) 50%, var(--slate) 100%);
    color: var(--primary-foreground);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-dark .section-title {
    color: var(--primary-foreground);
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

.section-dark .section-description {
    color: hsla(28, 35%, 97%, 0.9);
}

.section-subdescription {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-top: 0.75rem;
}

.section-dark .section-subdescription {
    color: hsla(28, 35%, 97%, 0.8);
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Card Styles */
.card {
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    background: var(--card);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.card:hover {
    border-color: hsla(18, 85%, 70%, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.card-header {
    padding: 1.5rem;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: hsla(18, 85%, 70%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.card-content {
    padding: 0 1.5rem 1.5rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--slate-light);
}

.feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
    flex-shrink: 0;
}

/* Feature Card */
.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: var(--card);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    color: var(--accent);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--muted-foreground);
}

/* Booking Widget */
.booking-widget {
    background-color: var(--card);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form */
.contact-form {
    background-color: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 56rem;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    background-color: var(--background);
    font-size: 1rem;
    font-family: inherit;
    color: var(--foreground);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px hsla(18, 85%, 70%, 0.1);
}

.form-group textarea {
    resize: none;
}

/* Footer */
.footer {
    background-color: var(--slate);
    padding: 0.75rem 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-img {
    width: 300px;
    height: auto;
}

.footer-info {
    text-align: center;
}

.footer-contact {
    margin-bottom: 0.5rem;
}

.footer-contact p {
    font-size: 0.875rem;
    color: hsla(28, 35%, 97%, 0.7);
}

.footer-contact a {
    color: hsla(28, 35%, 97%, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-copyright {
    font-size: 0.875rem;
    color: hsla(28, 35%, 97%, 0.7);
}

.footer-tagline {
    font-size: 0.75rem;
    color: hsla(28, 35%, 97%, 0.5);
    margin-top: 0.25rem;
}

/* Responsive Styles */
@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .logo {
        width: 250px;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .desktop-cta {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-info {
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .logo {
        width: 300px;
    }
}

@media (min-width: 1280px) {
    .phone-number {
        display: inline;
    }
}