/* CSS Variables */
:root {
    --deep-navy: #1a2b42;
    --ocean-blue: #2c5aa0;
    --warm-gold: #c9a96e;
    --pearl-white: #f8f9fa;
    --light-gray: #f5f6f7;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --border-light: #e1e8ed;
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 80px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    text-decoration: none !important;
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    background: transparent !important;
    background-color: transparent !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none !important;
    box-shadow: none !important;
}

.nav-links a:hover {
    color: var(--ocean-blue) !important;
    background: rgba(44, 90, 160, 0.1) !important;
    background-color: rgba(44, 90, 160, 0.1) !important;
}

.lang-btn {
    border: 2px solid var(--text-dark);
    background: transparent;
    padding: 0.5rem 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--ocean-blue);
    color: white;
    border-color: var(--ocean-blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 43, 66, 0.4), rgba(26, 43, 66, 0.4)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pearl-white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.anchor-icon {
    font-size: 3rem;
    margin: 2rem 0;
    color: var(--ocean-blue);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: transparent;
    color: var(--pearl-white);
    border: 2px solid var(--pearl-white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: none;
}

.cta-button:hover {
    background: var(--pearl-white);
    color: var(--deep-navy);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--pearl-white);
}

.about-section .container {
    max-width: 1000px;
    text-align: center;
}

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

.logo-main {
    height: 120px;
    width: auto;
    margin: 2rem auto;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.logo-main:hover {
    transform: scale(1.05);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Quote Section */
.quote-section {
    margin: 3rem 0;
    text-align: center;
}

.testimonial {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 4px solid var(--warm-gold);
    background: rgba(201, 169, 110, 0.05);
    border-radius: 0 15px 15px 0;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.quote-author {
    display: block;
    font-size: 1rem;
    color: var(--ocean-blue);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: normal;
}

.quote-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 0 auto;
    display: block;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 43, 66, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--pearl-white);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 43, 66, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Why Last Beach Section */
.why-section {
    padding: 6rem 0;
    background: var(--pearl-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.why-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(26, 43, 66, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 43, 66, 0.15);
}

.why-card.highlighted {
    border: 2px solid var(--warm-gold);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), rgba(201, 169, 110, 0.1));
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Calendar Section */
.calendar-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.calendar-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 43, 66, 0.1);
}

.calendar-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.apartment-description {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.calendar-widget {
    border: 1px solid var(--border-light);
    border-radius: 15px;
    overflow: hidden;
}

.calendar-header {
    background: var(--deep-navy);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px; /* Zapewnia jednakową wysokość */
}

.calendar-nav {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.calendar-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.calendar-month {
    font-weight: 600;
    font-size: 1.1rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: white;
}

.day-header {
    padding: 1rem 0.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--light-gray);
    border-bottom: 1px solid var(--border-light);
}

.day {
    padding: 1rem 0.5rem;
    text-align: center;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.day.available {
    background: white;
    color: var(--text-dark);
}

.day.available:hover {
    background: var(--ocean-blue);
    color: white;
}

.day.occupied {
    background: #ffebee;
    color: #d32f2f;
    position: relative;
}

.day.occupied::after {
    content: '✕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    color: #d32f2f;
}

.day.selected {
    background: var(--ocean-blue);
    color: white;
}

.calendar-note {
    padding: 1rem;
    background: var(--light-gray);
    text-align: center;
}

.calendar-note p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Movies Section */
.movies-section {
    padding: 5rem 0;
    background: var(--pearl-white);
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.movie-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(26, 43, 66, 0.1);
    transition: transform 0.3s ease;
}

.movie-item:hover {
    transform: translateY(-5px);
}

.movie-item iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.movie-item h3 {
    padding: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--deep-navy);
    text-align: center;
    margin: 0;
}

.youtube-link {
    text-align: center;
    margin-top: 3rem;
}

.youtube-btn {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.youtube-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--pearl-white);
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.pricing-table {
    background: var(--pearl-white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(26, 43, 66, 0.08);
    overflow: hidden;
}

.table-title {
    background: var(--deep-navy);
    color: var(--pearl-white);
    text-align: center;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--text-dark);
}

tr:nth-child(even) {
    background: rgba(245, 246, 247, 0.5);
}

tr:hover {
    background: rgba(44, 90, 160, 0.05);
}

/* Calculator */
.calculator-section {
    margin: 3rem 0;
}

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

.calculator {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(26, 43, 66, 0.1);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.calc-field {
    display: flex;
    flex-direction: column;
}

.calc-field label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.calc-field select,
.calc-field input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.calc-field select:focus,
.calc-field input:focus {
    outline: none;
    border-color: var(--ocean-blue);
}

.calc-results {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    font-size: 1.1rem;
}

.result-row.total {
    border-top: 2px solid var(--deep-navy);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--deep-navy);
    margin-top: 1rem;
    padding-top: 1.5rem;
}

@media (max-width: 768px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .calculator {
        padding: 2rem;
    }
}

/* Additional Fees */
.additional-fees {
    max-width: 800px;
    margin: 3rem auto 0;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(26, 43, 66, 0.1);
}

.additional-fees h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--deep-navy);
}

.fees-list {
    list-style: none;
    padding: 0;
}

.fees-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fees-list li:last-child {
    border-bottom: none;
}

.fee-note {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .movies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-tables {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calendar-card {
        padding: 1rem;
    }
    
    .day {
        min-height: 40px;
        padding: 0.5rem 0.25rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/* Additional Fees Centered Section */
.additional-fees-centered {
    margin: 3rem auto;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    max-width: 600px;
    text-align: center;
}

.additional-fees-centered h3 {
    font-size: 1.8rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.additional-fees-centered ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.additional-fees-centered li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 1rem;
}

.additional-fees-centered p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}



/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--pearl-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(26, 43, 66, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--deep-navy);
    color: white;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(26, 43, 66, 0.9);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 2rem;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    border-top: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 1.5rem;
    }
    
    .faq-icon {
        font-size: 1.3rem;
    }
}


/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--pearl-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26, 43, 66, 0.1);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ocean-blue);
    border-radius: 50%;
    color: white;
}

.contact-details h3 {
    margin: 0 0 0.5rem 0;
    color: var(--deep-navy);
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-details a {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--deep-navy);
}

.social-media {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26, 43, 66, 0.1);
}

.social-media h3 {
    margin: 0 0 1.5rem 0;
    color: var(--deep-navy);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.facebook:hover {
    background: #166FE5;
    transform: translateY(-2px);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-icon.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(221, 42, 123, 0.3);
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.youtube:hover {
    background: #E60000;
    transform: translateY(-2px);
}

.social-icon.google {
    background: #4285F4;
}

.social-icon.google:hover {
    background: #3367D6;
    transform: translateY(-2px);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26, 43, 66, 0.1);
}

.contact-form h3 {
    margin: 0 0 1.5rem 0;
    color: var(--deep-navy);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--ocean-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 43, 66, 0.2);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .social-icons {
        gap: 0.8rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}


.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--pearl-white);
    border-radius: 8px;
    border-left: 4px solid var(--ocean-blue);
}

.contact-note p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.contact-note strong {
    color: var(--deep-navy);
}

.contact-note a {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-note a:hover {
    color: var(--deep-navy);
    text-decoration: underline;
}


/* Calendar availability styles */
.day.selected {
    background: var(--ocean-blue);
    color: white;
}

.day.range-start,
.day.range-end {
    background: var(--deep-navy);
    color: white;
}

.day.in-range {
    background: rgba(52, 152, 219, 0.3);
    color: var(--text-dark);
}

.day.today {
    border: 2px solid var(--ocean-blue);
    font-weight: bold;
}

/* Admin panel styles for availability management */
.availability-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

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

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.legend-available { background: white; }
.legend-occupied { background: #ffebee; }
.legend-selected { background: var(--ocean-blue); }


/* Past dates styling */
.day.past {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
}

.day.past:hover {
    background: #f5f5f5;
    color: #ccc;
}


/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    animation: lightboxFadeIn 0.3s ease-in-out forwards;
}

@keyframes lightboxFadeIn {
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    margin-left: -60px;
}

.lightbox-next {
    margin-right: -60px;
}

.lightbox-counter {
    color: white;
    font-size: 14px;
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Gallery item hover effect */
.gallery-item img {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Mobile responsive lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-image {
        max-height: 70vh;
    }
    
    .lightbox-close {
        top: -30px;
        font-size: 24px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 20px;
        padding: 10px 15px;
    }
    
    .lightbox-prev {
        margin-left: -50px;
    }
    
    .lightbox-next {
        margin-right: -50px;
    }
}

