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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    min-height: 100vh;
    color: #333;
}

header {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.logo-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 200px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

header h1 {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

/* Description Section */
.description-section {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.description-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

.availability-badge span {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.description-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-style: italic;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #dc2626;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #dc2626;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.booking-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(185, 28, 28, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.booking-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.signature {
    text-align: right;
    font-size: 1.1rem;
    color: #666;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.signature strong {
    color: #dc2626;
    font-size: 1.2rem;
}

/* Calendar Section */
.calendar-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

.calendar-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: 700;
}

.calendar-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.calendar-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.calendar-month {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-width: 400px;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.month-title {
    text-align: center;
    font-size: 1.3rem;
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 0.5rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, calc((100% - 24px) / 7));
    gap: 4px;
    width: 100%;
    box-sizing: border-box;
    grid-auto-rows: 70px;
}

.calendar-grid > * {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, calc((100% - 24px) / 7));
    gap: 4px;
    margin-bottom: 8px;
    width: 100%;
    box-sizing: border-box;
}

.calendar-header > * {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.day-header {
    text-align: center;
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
    padding: 0.6rem 0.4rem;
    background: #f5f5f5;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    min-height: 40px;
    line-height: 1.2;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.calendar-day {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    height: 70px;
    width: 100%;
    font-size: 0.8rem;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
    max-width: 100%;
}

.calendar-day.empty,
.calendar-day.past {
    background: #f9f9f9;
    border: 1px solid #eee;
    cursor: default;
    height: 70px;
    width: 100%;
    max-width: 100%;
}

.calendar-day.available {
    background: #1976D2;
    border-color: #1565C0;
    color: white;
}

.calendar-day.available:hover {
    background: #1565C0;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.5);
}

.calendar-day.booked {
    background: #e0e0e0;
    border-color: #9e9e9e;
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.calendar-day.booked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #666;
    transform: rotate(-45deg);
}

.calendar-day.unavailable {
    background: #fff3e0;
    border-color: #ff9800;
    opacity: 0.7;
}

.day-number {
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 0.1rem;
    line-height: 1.1;
    flex-shrink: 0;
}

.calendar-day.available .day-number {
    color: white;
}

.calendar-day.booked .day-number {
    color: #666;
}

.day-price {
    font-size: 0.6rem;
    font-weight: 700;
    color: #dc2626;
    margin-top: 0.1rem;
    line-height: 1.1;
    text-align: center;
    flex-shrink: 0;
}

.calendar-day.available .day-price {
    color: #ffeb3b;
}

.day-status {
    font-size: 0.55rem;
    color: #666;
    font-weight: 600;
    margin-top: 0.1rem;
    text-transform: uppercase;
    line-height: 1.1;
    flex-shrink: 0;
}

.day-note {
    position: absolute;
    top: 1px;
    right: 1px;
    font-size: 0.55rem;
    cursor: help;
    line-height: 1;
    z-index: 1;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #eee;
    flex-wrap: wrap;
}

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

.legend-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.legend-box.available {
    background: #1976D2;
    border-color: #1565C0;
}

.legend-box.booked {
    background: #e0e0e0;
    border-color: #9e9e9e;
    position: relative;
}

.legend-box.booked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #666;
    transform: rotate(-45deg);
}

.legend-box.unavailable {
    background: #fff3e0;
    border-color: #ff9800;
}

/* Video Section */
.video-section {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.video-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-link {
    text-align: center;
}

.video-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.video-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.video-button span {
    font-size: 1.3rem;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin: 2rem 0 1rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

.gallery-description {
    text-align: center;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
    padding: 0 2rem;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item .image-number {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .image-number {
    opacity: 1;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

.close:hover {
    color: #dc2626;
    transform: scale(1.1);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    user-select: none;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 1001;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    color: #dc2626;
    transform: translateY(-50%) scale(1.2);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}

/* Contact Section */
.contact {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.map-container {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

footer {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: #666;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 3rem;
    color: white;
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 150px;
        max-height: 100px;
    }

    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }

    .prev, .next {
        font-size: 30px;
        padding: 10px;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .lightbox-caption {
        font-size: 1rem;
        bottom: 20px;
    }

    .contact {
        padding: 3rem 1.5rem;
    }

    .contact h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .contact-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .map-container {
        margin-top: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .video-section {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .video-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .video-container {
        padding: 1.5rem;
    }

    .video-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .description-section {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .description-container {
        padding: 2rem 1.5rem;
    }

    .description-section h2 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .availability-badge span {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    .booking-cta {
        padding: 1.5rem;
    }

    .booking-cta p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }

    .calendar-section {
        padding: 1rem;
        margin-top: 2rem;
        overflow-x: auto;
    }

    .calendar-section h2 {
        font-size: 1.5rem;
    }

    .calendar-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .calendar-month {
        padding: 1rem;
        min-width: 320px;
    }

    .month-title {
        font-size: 1.1rem;
    }

    .calendar-day {
        height: 60px;
        padding: 0.3rem;
        font-size: 0.75rem;
        overflow: hidden;
    }
    
    .calendar-day.empty,
    .calendar-day.past {
        height: 60px;
    }
    
    .calendar-grid {
        gap: 2px;
    }
    
    .calendar-header {
        gap: 2px;
    }
    
    .day-header {
        font-size: 0.8rem;
        padding: 0.5rem 0.3rem;
        min-height: 38px;
    }

    .day-header {
        font-size: 0.65rem;
        padding: 0.3rem 0.1rem;
    }

    .day-number {
        font-size: 0.8rem;
    }

    .day-price {
        font-size: 0.55rem;
    }

    .day-status {
        font-size: 0.5rem;
    }

    .calendar-legend {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
}

