:root {
    --primary-color: #e61e25;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --card-shadow: 0 8px 24px rgba(0,0,0,0.1);
    --gradient-bg: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

body {
    font-family: 'Prompt', sans-serif;
    background-color: var(--bg-light);
    margin: 0;
    padding: 0;
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Logo Section */
.logo-section {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
    background: var(--gradient-bg);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.logo-section img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-section img:hover {
    transform: scale(1.05);
}

.logo-section p {
    margin-top: 0.5rem;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 300;
}

/* Calendar Section */
.calendar-section {
    overflow-x: auto;
    min-height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card:hover::before {
    opacity: 1;
}

.price-card {
    border-left: 4px solid var(--primary-color);
}

.price-text {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: baseline;
}

.price-text small {
    font-size: 1rem;
    margin-left: 0.5rem;
    opacity: 0.8;
}

/* LINE Button */
.line-button {
    background: #00B900;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,185,0,0.2);
}

.line-button:hover {
    background: #009900;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,185,0,0.3);
}

/* FullCalendar Customization */
.fc {
    font-family: 'Prompt', sans-serif !important;
}

.fc-event {
    border-radius: 8px !important;
    font-size: 0.9em !important;
    box-shadow: 0 2px 8px rgba(230,30,37,0.2);
    border: none !important;
    padding: 4px 8px !important;
}

.fc-toolbar-title {
    font-size: 1.5em !important;
    font-weight: 600 !important;
}

.fc-button-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    transition: all 0.3s ease !important;
}

.fc-button-primary:hover {
    background-color: #d41920 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230,30,37,0.2);
}

/* SEO Content */
.seo-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    background: white;
    margin-top: 3rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .main-container {
        padding: 1rem;
    }

    .fc .fc-toolbar {
        flex-direction: column;
        gap: 1rem;
    }

    .fc .fc-toolbar-title {
        font-size: 1.2em !important;
    }

    .fc .fc-toolbar-chunk {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
    }

    .fc .fc-timegrid-slot-label {
        font-size: 0.8em !important;
    }

    .fc .fc-timegrid-axis-cushion {
        max-width: 40px !important;
    }

    .logo-section img {
        height: 40px;
    }

    .price-text {
        font-size: 1.5rem;
    }
}

/* Scrollbar Customization */
.calendar-section::-webkit-scrollbar {
    height: 8px;
}

.calendar-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.calendar-section::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.calendar-section::-webkit-scrollbar-thumb:hover {
    background: #d41920;
}
.main-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
}

.sub-tagline {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .main-tagline {
        font-size: 1.2rem;
    }
    .sub-tagline {
        font-size: 1rem;
    }
}
.fc-v-event{
    background: var(--primary-color);
}
a{
    color: var(--primary-color);
}
/* Promotion Modal Styles */
.modal-content {
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modal-header {
    padding: 1rem 1rem 0;
}

.btn-close {
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.btn-close:hover {
    transform: rotate(90deg);
}

.promo-image {
    max-width: 200px;
    margin: 0 auto;
    animation: floatImage 3s ease-in-out infinite;
}

.promo-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.promo-desc {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.promo-highlight {
    background: var(--primary-color);
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    padding: 1rem;
    border-radius: 15px;
    animation: pulse 2s infinite;
}

.promo-period {
    font-size: 1rem;
    color: #888;
    margin-top: 1rem;
}

.btn-book-now {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-book-now:hover {
    background: #d41920;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230,30,37,0.3);
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .promo-title {
        font-size: 1.5rem;
    }
    
    .promo-desc {
        font-size: 1rem;
    }
    
    .promo-highlight {
        font-size: 2rem;
    }
    
    .btn-book-now {
        width: 100%;
        padding: 0.8rem;
    }
}