@font-face {
    font-family: 'Dancing Script';
    src: url('/common/fonts/DancingScript-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Cormorant Upright';
    src: url('/common/fonts/CormorantUpright-Regular.woff2') format('woff2');
}

header {
    text-align: center;
    background-color: var(--primary-color);
    padding: var(--spacing-unit) 0;
    color: white;
}

/* CSS Reset and Base Styles */
:root {
    --primary-color: #000000dc;
    --accent-color: #e0b4b4;
    --accent-color-hover: #c49a9a;
    --background-color: #ffffff;
    --champagne-color: #f7e7ce;
    --text-color: #000000;
    --spacing-unit: 1rem;
    --main-font: "Dancing Script", cursive;
    --secondary-font: "Cormorant Upright", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--main-font);
    font-size: 1.85rem;
    margin-bottom: var(--spacing-unit);
    font-weight: 400;
}

p {
    font-family: var(--secondary-font);
    font-size: 1.25rem;
    font-weight: 400;
    font-style: normal;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    /* This centers the container */
    padding: 20px 20px;
    text-align: center;
    
}

/* Sections */
.section {
    padding: calc(var(--spacing-unit) * 2) 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Schedule */
.schedule img {
    max-width: 100%;
}

/* discount */
.special-rate-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
}

.special-rate-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 8px;
}

.special-rate-button:hover {
    background-color: var(--accent-color-hover);
}

.copy-message {
    margin-top: 8px;
    color: green;
    font-size: 14px;
}

.copy-message.show {
    opacity: 1;
}

.instructions-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.instructions-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.instructions-card ul {
    list-style-type: disc;
    padding-left: 20px;
}

.instructions-card li {
    margin-bottom: 8px;
}

/* Room Details/Rates */
.rate-note {
    text-align: center;
    color: #95a5a6;
    font-size: 0.9em;
    font-style: italic;
    margin-top: 20px;
    padding: 10px;
}

.rate-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px;
}

.rate-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.rate-card h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.room-category {
    margin-bottom: 20px;
}

.room-category h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
}

.divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 25px 0;
}

.room-variants {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.variant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.variant-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.variant-name {
    font-size: 1.1em;
    /* color: #34495e; */
    font-weight: 500;
}

.variant:last-child {
    border-bottom: none;
}

.capacity {
    display: flex;
    align-items: center;
    gap: px;
    color: #7f8c8d;
    font-size: 0.9em;
}

.capacity i {
    color: #95a5a6;
}

.price {
    font-size: 1.3em;
    font-weight: 600;
    color: var(---color);
}

.per-night {
    margin-top: 15px;
    color: #95a5a6;
    font-size: 0.9em;
    text-align: right;
}

.book-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #2ecc71;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.book-now-btn:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.book-now-btn i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.book-now-btn:hover i {
    transform: translateX(4px);
}

.rsvp-placeholder {
    min-height: 800px;
    display: inline;
    justify-content: center;
    align-items: center;
}

#rsvpify-iframe-loader {
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
}


/* FAQ */
.faq {
    padding: 50px 0px;
    background-color: #f9f9f9;
}

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.85em;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1.25em;
    line-height: 1.5;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: rgb(255, 255, 255);
    padding: var(--spacing-unit) 0;
    text-align: center;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.button-container p {
    margin: 0;
}

.commom-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    min-width: 150px;
    background-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}
.commom-button:hover {
    background-color: var(--accent-color-hover);
}

/* Media Queries */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    h2 {
        font-size: 2rem;
    }

    .accommodation-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .section {
        min-height: 60vh;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Print Styles */
@media print {
    .mapboxgl-map {
        height: 300px !important;
    }

    .accommodation-column {
        break-inside: avoid;
    }
}

.archive-section {
    text-align: center;
    padding: 2rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.button-container p {
    margin: 0;
}

.button-container .commom-button {
    min-width: 200px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-container .commom-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.footer-signature {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    letter-spacing: 0.6px;
    line-height: 1.6;
    font-weight: 300;
}

.copyright-symbol {
    display: inline-block;
    margin-right: 0.3rem;
    animation: fadeIn 1s ease-in;
}

.year {
    font-weight: 400;
}

.divider {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.heart {
    display: inline-block;
    margin: 0 0.3rem;
    animation: pulse 1.5s ease infinite;
}

.authors {
    font-weight: 400;
    transition: all 0.3s ease;
}


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .footer-signature {
        padding: 1.5rem 1rem;
    }
    .copyright {
        font-size: 0.85rem;
    }
}

#bottom {
    background: linear-gradient(var(--champagne-color),var(--primary-color)
    );
    padding: 4rem 0 0;
}


#bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#bottom h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;

}

#bottom address {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-style: normal;
}

#bottom address p {
    font-size: 1.1rem;
    line-height: 1.6;
}

#bottom address strong {
    font-weight: 500;
    color: var(--primary-color);
}

.commom-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.commom-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.archive-section {
    margin: 4rem 0;
    text-align: center;
}

.archive-section h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.button-container p {
    margin: 0;
}

.footer-signature {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    #bottom {
        padding: 2rem 0 0;
    }

    #bottom .container {
        padding: 0 1rem;
    }

    #bottom h2 {
        font-size: 2rem;
    }

    .button-container {
        gap: 1rem;
    }

    .commom-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}