/* Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f9f7f3;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    display: flex;
    min-height: 80vh;
    padding: 0 5%;
    align-items: center;
    background: linear-gradient(135deg, rgba(89,170,236,0.1) 0%, rgba(255,255,255,0.3) 100%);
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.greet {
    font-family: 'Playfair Display', serif;
    font-size: 2.7rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
    max-width: 600px;
}

.hero-slider {
    flex: 1;
    position: relative;
    height: 550px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.slider {
    position: relative;
    width: 500%;
    height: 100%;
    animation: slider 20s infinite;
}

.slider img {
    float: left;
    width: 20%;
    height: 100%;
    object-fit: cover;
}

@keyframes slider {
    0%, 20% { left: 0; }
    25%, 45% { left: -100%; }
    50%, 70% { left: -200%; }
    75%, 95% { left: -300%; }
    100% { left: -400%; }
}



/* Calendar Section Styles */
.calendar-section {
    padding: 60px 5%;
    background-color: #fff;
    text-align: center;
    margin-top: 10rem;
}

#calendar {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
}

/* Calendar Header */
.fc-header-toolbar {
    padding: 15px;
    margin-bottom: 10px;
}

.fc-toolbar-title {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 1.5rem;
}

.fc-button {
    background-color: #59aaec;
    border: none;
    color: #fff;
    text-transform: capitalize;
    border-radius: 5px;
    padding: 6px 12px;
    transition: all 0.3s ease;
}

.fc-button:hover {
    background-color: #007acc;
    transform: translateY(-2px);
}

.fc-button:active, .fc-button:focus {
    box-shadow: none;
    outline: none;
}

.fc-daygrid-day {
    border-color: #f0f0f0;
}

.fc-daygrid-day-top {
    justify-content: center;
    padding-top: 5px;
}

.fc-daygrid-day-number {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.fc-day-today {
    background-color: rgba(89, 170, 236, 0.1);
}

.fc-day-today .fc-daygrid-day-number {
    color: #59aaec;
    font-weight: 600;
}

.fc-daygrid-event {
    background-color: #ff9800;
    border: none;
    border-radius: 3px;
    padding: 2px 5px;
    font-size: 0.8rem;
}

.fc-daygrid-event-dot {
    display: none;
}

.fc-daygrid-event:hover {
    background-color: #e68900;
}

/* Day headers */
.fc-col-header-cell {
    background-color: #59aaec;
    color: #fff;
    padding: 8px 0;
}

.fc-col-header-cell-cushion {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* Event popover */
.fc-popover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: none;
    border-radius: 8px;
}

.fc-popover-header {
    background-color: #59aaec;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fc-toolbar {
        flex-direction: column;
        gap: 10px;
    }

    .fc-toolbar-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .fc-header-toolbar {
        padding: 10px 5px;
    }

    #calendar {
        height: 500px;
    }
}

/* Features Section */
.features-section {
    display: flex;
    justify-content: space-around;
    padding: 60px 5%;
    background-color: white;
    margin-top: 10rem;
    margin-bottom: 10rem;
}

.feature-card {
    text-align: center;
    padding: 30px;
    max-width: 300px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #59aaec;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: #333;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 5%;
    background-color: #f9f7f3;
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 15px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}
.booking-count {
    font-size: 0.9em;
    color: #666;
    font-weight: normal;
    margin-left: 10px;
  }
/* Footer */


/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        padding-top: 60px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slider {
        width: 100%;
    }

    .features-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}




@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
