/* ==========================================
   MARINELLA SARDYNIA - SARDYŃSKI STYL
   ========================================== */

/* === ROOT VARIABLES === */
:root {
    /* Sardyńska paleta kolorów */
    --color-sea-blue: #0077BE;
    --color-sea-light: #4DA8DA;
    --color-sea-dark: #004E7A;
    --color-sand: #F4E8C1;
    --color-terra-cotta: #C85A54;
    --color-stone: #8B7E74;
    --color-olive: #6B7C59;
    --color-white: #FFFFFF;
    --color-cream: #FAF7F0;
    --color-dark: #2C3E50;
    --color-navy: #1A3B5D;

    /* Cienie */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);

    /* Czcionki */
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Animacje */
    --transition: all 0.3s ease;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--color-navy);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-terra-cotta), var(--color-sea-blue));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-stone);
    margin-bottom: 3rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-stone);
    margin-bottom: 2rem;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.nav-brand:hover {
    color: var(--color-terra-cotta);
}

.nav-brand i,
.nav-brand .sardinia-icon {
    color: var(--color-terra-cotta);
    font-size: 1.8rem;
}

.sardinia-icon {
    display: inline-block;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--color-terra-cotta);
    background: rgba(200, 90, 84, 0.1);
}

.nav-link.active {
    color: var(--color-terra-cotta);
}

.nav-link.cta-button {
    background: var(--color-terra-cotta);
    color: var(--color-white);
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    box-shadow: 0 4px 15px rgba(200, 90, 84, 0.3);
}

.nav-link.cta-button:hover {
    background: #A84740;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 90, 84, 0.4);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-link {
    font-size: 1.5rem;
    transition: var(--transition);
    opacity: 0.6;
    text-decoration: none;
}

.lang-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lang-link.active {
    opacity: 1;
}

.lang-separator {
    color: var(--color-stone);
    font-size: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sea-dark) 0%, var(--color-sea-blue) 100%);
    background-image: url('images/12.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 90, 84, 0.65) 0%, rgba(26, 59, 93, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-features i {
    font-size: 1.3rem;
    color: var(--color-sand);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    color: var(--color-white);
    opacity: 0.8;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--color-terra-cotta);
    color: var(--color-white);
    border-color: var(--color-terra-cotta);
}

.btn-primary:hover {
    background: #A84740;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* === VIDEO SECTION === */
.video-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* === ABOUT SECTION === */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.feature-highlight {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
    border-left: 4px solid var(--color-terra-cotta);
}

.feature-highlight i {
    font-size: 2.5rem;
    color: var(--color-terra-cotta);
}

.feature-highlight h4 {
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.feature-list {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--color-sea-blue);
    min-width: 30px;
}

.feature-item h4 {
    color: var(--color-navy);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--color-stone);
    font-size: 0.95rem;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--color-white);
    font-size: 1.1rem;
    text-align: center;
}

/* === AMENITIES SECTION === */
.amenities-section {
    padding: 4rem 0;
    background: var(--color-navy);
    color: var(--color-white);
}

.amenities-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--color-white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.amenity {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.amenity:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.amenity i {
    font-size: 3rem;
    color: var(--color-sand);
    margin-bottom: 1rem;
}

.amenity h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.amenity p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* === GALLERY SECTION === */
.gallery-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 119, 190, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-overlay i {
    font-size: 3rem;
    color: var(--color-white);
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--color-white);
    color: var(--color-white);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-terra-cotta);
    transform: scale(1.1);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* === LOCATION SECTION === */
.location-section {
    padding: 5rem 0;
    background: var(--color-cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location-info h3 {
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.distances {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.distance-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.distance-item i {
    font-size: 1.5rem;
    color: var(--color-sea-blue);
    min-width: 30px;
}

.distance-item strong {
    display: block;
    color: var(--color-navy);
}

.distance-item span {
    color: var(--color-stone);
    font-size: 0.95rem;
}

.tips-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-terra-cotta) 0%, #A84740 100%);
    color: var(--color-white);
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
}

.tips-box i {
    font-size: 2rem;
    color: var(--color-sand);
}

.tips-box h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.tips-box p {
    margin-bottom: 0.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--color-stone);
    font-size: 1.1rem;
}

/* === PRICING SECTION === */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 3px solid var(--color-terra-cotta);
}

.pricing-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--color-terra-cotta);
    color: var(--color-white);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    color: var(--color-white);
}

.pricing-header.low-season {
    background: linear-gradient(135deg, var(--color-olive) 0%, #556B46 100%);
}

.pricing-header.mid-season {
    background: linear-gradient(135deg, var(--color-sea-blue) 0%, var(--color-sea-dark) 100%);
}

.pricing-header.high-season {
    background: linear-gradient(135deg, var(--color-terra-cotta) 0%, #A84740 100%);
}

.pricing-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.pricing-body {
    padding: 2rem;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.price .currency {
    font-size: 1rem;
    color: var(--color-stone);
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-navy);
    font-family: var(--font-heading);
}

.price .period {
    font-size: 1rem;
    color: var(--color-stone);
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-sand);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--color-sea-blue);
    font-size: 1.2rem;
}

.pricing-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--color-cream);
    border-radius: 15px;
    display: flex;
    gap: 1rem;
    align-items: start;
    box-shadow: var(--shadow-sm);
}

.pricing-note i {
    font-size: 1.5rem;
    color: var(--color-sea-blue);
    margin-top: 0.2rem;
}

/* === BOOKING SECTION === */
.booking-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Calendar Widget */
.booking-calendar {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-prev,
.calendar-next {
    background: var(--color-sand);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-navy);
    font-size: 1.2rem;
}

.calendar-prev:hover,
.calendar-next:hover {
    background: var(--color-terra-cotta);
    color: var(--color-white);
    transform: scale(1.1);
}

.calendar-month {
    color: var(--color-navy);
    font-size: 1.5rem;
    margin: 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--color-stone);
    padding: 0.5rem;
    font-size: 0.9rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.calendar-day:not(.disabled):not(.booked):hover {
    background: var(--color-sand);
    transform: scale(1.05);
}

.calendar-day.today {
    border: 2px solid var(--color-sea-blue);
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.3;
}

.calendar-day.booked {
    background: #ffcccc;
    color: #cc0000;
    cursor: not-allowed;
    position: relative;
}

.calendar-day.booked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #cc0000;
}

.calendar-day.selected {
    background: var(--color-sea-blue);
    color: var(--color-white);
    font-weight: 700;
}

.calendar-day.in-range {
    background: rgba(0, 119, 190, 0.2);
    color: var(--color-navy);
}

.calendar-info {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-sand);
}

.calendar-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-dot {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid var(--color-stone);
}

.legend-dot.available {
    background: var(--color-white);
}

.legend-dot.booked {
    background: #ffcccc;
}

.legend-dot.selected {
    background: var(--color-sea-blue);
}

/* Booking Form */
.booking-form-container {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.selected-dates-display {
    padding: 1rem;
    background: var(--color-cream);
    border-radius: 10px;
    border-left: 4px solid var(--color-sea-blue);
    margin-bottom: 1rem;
}

.selected-dates-display p {
    margin: 0;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selected-dates-display i {
    color: var(--color-sea-blue);
}

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

.price-estimate {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-sea-blue), var(--color-sea-light));
    color: var(--color-white);
    border-radius: 15px;
    align-items: center;
}

.price-estimate i {
    font-size: 2rem;
}

.price-estimate strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.price-estimate #priceAmount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.price-estimate small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

/* Booking Success Message */
.booking-success {
    text-align: center;
    padding: 3rem 2rem;
}

.booking-success i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.booking-success h3 {
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.booking-success p {
    color: var(--color-stone);
    margin-bottom: 2rem;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--color-navy);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--color-sea-blue);
    min-width: 30px;
}

.contact-item strong {
    display: block;
    color: var(--color-navy);
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: var(--color-terra-cotta);
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-media {
    margin: 3rem 0;
}

.social-media h4 {
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sea-blue);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-terra-cotta);
    transform: scale(1.1);
}

.contact-hours {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-cream);
    border-radius: 10px;
}

.contact-hours i {
    font-size: 1.5rem;
    color: var(--color-sea-blue);
}

/* === CONTACT FORM === */
.contact-form {
    background: var(--color-cream);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-navy);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-sand);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-sea-blue);
    box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.1);
}

/* Email validation states */
.form-group input[type="email"]:valid {
    border-color: #4CAF50;
}

.form-group input[type="email"]:invalid:not(:placeholder-shown) {
    border-color: #f44336;
}

.form-group input[type="email"]:valid + .email-hint {
    color: #4CAF50;
}

.form-group input[type="email"]:invalid:not(:placeholder-shown) + .email-hint {
    color: #f44336;
}

.email-hint {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: var(--color-stone);
    opacity: 0.8;
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-stone);
    text-align: center;
}

/* === FOOTER === */
.footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.footer-brand i,
.footer-brand svg {
    color: var(--color-terra-cotta);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-sand);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--color-terra-cotta);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: var(--color-terra-cotta);
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-terra-cotta);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    background: var(--color-navy);
    transform: translateY(-5px);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* === RESPONSIVE === */
/* Medium desktops - reduce navbar font sizes to prevent wrapping */
@media (max-width: 1200px) {
    .nav-brand {
        font-size: 1.3rem;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0.8rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.7rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .about-grid,
    .location-grid,
    .contact-grid,
    .booking-container {
        grid-template-columns: 1fr;
    }

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

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .language-switcher {
        justify-content: center;
        padding: 1rem;
        width: 100%;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .price .amount {
        font-size: 2.5rem;
    }
}
