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

/* Import custom fonts with fallbacks */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300&family=Source+Sans+Pro:wght@400;500&display=swap');

/* Font fallbacks for premium fonts */
@font-face {
    font-family: 'Canela Condensed Trial';
    src: local('Canela Condensed Trial'), local('Playfair Display');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Whitney HTF';
    src: local('Whitney HTF'), local('Source Sans Pro');
    font-weight: 400 500;
    font-style: normal;
}

:root {
    --app-background: #f8f9fa; /* Default background */
    --booking-section-background: #ffffff;
    --suites-showcase-background: #f8f9fa;
    --primary-text-color: #333; /* Default text color */
    --secondary-text-color: #666;
    --heading-text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary-text-color);
    background-color: var(--app-background);
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo p {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255,255,255,0.1);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Booking Section */
.booking-section {
    padding: 60px 0;
    background: var(--booking-section-background);
    transition: background-color 0.5s ease;
}


/* Suites Showcase */
.suites-showcase {
    padding: 60px 0;
    background: var(--suites-showcase-background);
    transition: background-color 0.5s ease;
}

.suites-showcase h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--heading-text-color);
    transition: color 0.5s ease;
}

.suites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.suite-preview {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.suite-preview:hover {
    transform: translateY(-5px);
}

.suite-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.suite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suite-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.suite-preview:hover .suite-overlay {
    opacity: 1;
}

.book-suite-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.book-suite-btn:hover {
    background: #0056b3;
}

.suite-info {
    padding: 25px;
}

.suite-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--heading-text-color);
    transition: color 0.5s ease;
}

.suite-info p {
    color: var(--secondary-text-color);
    margin-bottom: 20px;
    line-height: 1.6;
    transition: color 0.5s ease;
}

.suite-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--secondary-text-color);
    transition: color 0.5s ease;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    margin-bottom: 8px;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ccc;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        gap: 15px;
    }



    .suites-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .suite-features {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 24px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .booking-section,
    .suites-showcase {
        padding: 40px 0;
    }

    .suite-info {
        padding: 20px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* Loading States */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #c9a961;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #c9a961;
    color: white;
}

.btn-primary:hover {
    background: #a38a4e;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,.25);
}
