/* Base & Reset */
:root {
    --bg-color: #ffffff;
    /* Must be strictly white for the logo */
    --surface-color: #f7f9fa;
    --text-primary: #1a1f24;
    --text-secondary: #5c6a79;
    --accent-color: #125b60;
    /* Premium Teal */
    --accent-hover: #0c4347;
    --border-color: #e2e8f0;
    --error-color: #ef4444;
    --success-color: #10b981;

    --font-family: 'Outfit', system-ui, -apple-system, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.03), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Typography */
h1,
h2,
h3 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 14px rgba(18, 91, 96, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(18, 91, 96, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 1.5px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.nav-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 28px;
    transition: color 0.2s ease, transform 0.2s;
}

.social-link:hover {
    color: #E1306C;
    /* Instagram Color */
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-wrapper {
    background: #fff;
    /* Keep strictly white */
    margin: 0 auto 32px auto;
    width: 100%;
    max-width: 320px;
    display: flex;
    justify-content: center;
}

.main-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 40px auto;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #fff;
}

.about-container {
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    background-color: var(--surface-color);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Booking Section */
.booking-section {
    padding: 60px 0 100px 0;
}

.booking-card {
    background-color: var(--surface-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--accent-color);
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

/* Form Styles */
.booking-form {
    display: grid;
    gap: 24px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 16px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background-color: #fff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all 0.2s ease;
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(18, 91, 96, 0.1);
}

.input-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.2s ease;
    background-color: #fff;
    padding: 0 4px;
}

/* Floating Label Magic */
.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label {
    top: 0;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 500;
}

.date-label {
    top: 0 !important;
    font-size: 0.8rem !important;
    color: var(--text-secondary) !important;
}

.select-group select {
    appearance: none;
    cursor: pointer;
}

.select-group::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6a79' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.btn-block ion-icon {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.btn-block:hover ion-icon {
    transform: translateX(4px);
}

/* Form Messages */
.form-message {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.form-message ion-icon {
    font-size: 24px;
}

.hidden {
    display: none;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 0 40px 0;
    background-color: var(--surface-color);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-logo {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 600px) {
    .footer-contact {
        flex-direction: row;
        gap: 24px;
    }
}

.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--accent-color);
}

.social-link.large {
    font-size: 32px;
}

/* Animations */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
    .booking-card {
        padding: 32px 24px;
    }

    .nav-links .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}