:root {
    /* Color Palette - Mediterranean Premium */
    --primary-color: #0F2C59;
    /* Deep Ocean Blue */
    --secondary-color: #DAC0A3;
    /* Sand/Beige */
    --accent-color: #C5A059;
    /* Gold for highlights */
    --text-color: #333333;
    /* Dark Grey for text */
    --text-light: #666666;
    /* Medium Grey for secondary text */
    --bg-light: #F8F5F2;
    /* Off-white/Cream background */
    --white: #ffffff;
    --border-color: #E0E0E0;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 50px;
    /* Pill shape */
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0a1f40;
    border-color: #0a1f40;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.site-navigation ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.site-navigation a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
}

.site-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.site-navigation a:hover::after {
    width: 100%;
}

.site-navigation .btn {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--white);
    background-color: var(--primary-color);
}

.site-navigation .btn::after {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    /* Full height */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    margin-top: calc(-1 * var(--header-height));
    /* Underlap header */
    padding-top: var(--header-height);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 44, 89, 0.3), rgba(15, 44, 89, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero .btn {
    border-color: var(--white);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.hero .btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
.section-title {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title h2 {
    font-size: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Welcome Section */
.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
}

.welcome-content .signature {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 3rem;
    font-style: italic;
}

/* Gallery - Masonry Style Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    transition: opacity 0.3s ease;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius);
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
    cursor: pointer;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-color);
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Pricing Cards (Modern Replacement for Table) */
.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .pricing-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.pricing-card.highlight {
    background: var(--primary-color);
    color: var(--white);
}

.pricing-card.highlight h3,
.pricing-card.highlight .price,
.pricing-card.highlight .period {
    color: var(--white);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-card .price {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
}

.pricing-card .period {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: block;
}

.pricing-card ul {
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

/* Additional Info Box */
.additional-info {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.additional-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.additional-info ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.additional-info ul li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ Accordion */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
    overflow: hidden;
}

.faq-item[open] {
    box-shadow: var(--shadow-soft);
    border-color: var(--accent-color);
}

.faq-q {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 3rem;
    display: block;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-q::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    font-weight: 300;
}

details[open] .faq-q::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-a {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid transparent;
}

details[open] .faq-a {
    border-top-color: rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    animation: fadeIn 0.3s ease;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: #a0aec0;
    padding: 5rem 0 2rem;
    font-size: 1rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: left;
    margin-bottom: 3rem;
}

.footer-info h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #d1d5db;
    text-transform: none;
    font-size: 1rem;
    letter-spacing: 0;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.lightbox-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 10001;
    cursor: pointer;
    line-height: 1;
    background: transparent;
    border: none;
    padding: 10px;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s ease;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    outline: none;
    z-index: 10000;
}

.lightbox-next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.lightbox-prev {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.8);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hamburger Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .site-navigation {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        z-index: 999;
    }

    .site-navigation.is-open {
        display: block;
    }

    .site-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .site-navigation ul li a {
        display: block;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .site-navigation ul li:last-child a {
        border-bottom: none;
        margin: 1rem 1.5rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .pricing-wrapper,
    .faq-grid,
    .additional-info {
        grid-template-columns: 1fr;
    }

    .additional-info {
        grid-template-columns: 1fr;
    }
}

/* Info Cards Layout */
.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .info-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: var(--text-color);
}

.info-card.wide {
    border-left-color: var(--primary-color);
    background: linear-gradient(to right, #fff, var(--bg-light));
    grid-column: 1 / -1;
}

/* Availability Calendar */
.calendar-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cal-tab {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
}

.cal-tab:hover,
.cal-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.calendar-month {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.calendar-month h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.month-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar-view {
    animation: fadeInUp 0.4s ease-out;
}

.day-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    margin: auto;
    border-radius: 50%;
    font-size: 0.8rem;
    color: var(--white);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.day-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Tooltip on Hover */
.day-dot::after {
    content: attr(title);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(10, 31, 64, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.day-dot:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.day-dot.free {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.day-dot.booked {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    opacity: 0.4;
    filter: grayscale(0.5);
}

.day-dot.booked:hover {
    opacity: 0.8;
    filter: grayscale(0);
}

.calendar-legend .dot {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}

.calendar-legend .dot.free {
    background-color: #2ecc71;
}

/* Form Styles */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group.flex-1 {
    flex: 1;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.radio-group label {
    cursor: pointer;
    font-weight: normal;
    color: var(--text-color);
}

.radio-group input[type="radio"] {
    margin-right: 0.5rem;
    accent-color: var(--primary-color);
}

.btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}