/* SkySpa Apartments - Styles */

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

body {
    font-family: 'Georgia', serif;
    line-height: 1.28;
    color: rgba(34, 34, 34, 0.64);
    background-color: #fff;
    font-size: 18px;
    font-weight: 400;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col-md-4, .col-md-6, .col-md-8 {
    padding: 15px;
}

.col-md-4 { flex: 0 0 33.333333%; }
.col-md-6 { flex: 0 0 50%; }
.col-md-8 { flex: 0 0 66.666667%; }

/* Navigation */
.navbar {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.navbar-brand a {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(34, 34, 34, 0.64);
    text-decoration: none;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
}

.navbar-item {
    color: rgba(57, 52, 47, 0.64);
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-item:hover {
    color: rgba(138, 104, 75, 0.64);
    background-color: transparent;
}

.navbar-item.active {
    color: rgba(0, 128, 255, 0.64);
    background-color: transparent;
}

/* Hero Section */
.hero {
    background: #fff;
    color: #222222;
    padding: 100px 0;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.hero-content h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1rem;
    color: rgba(34, 34, 34, 0.64);
}

.hero-subtitle {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 2rem;
    color: rgba(34, 34, 34, 0.64);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: rgba(0, 128, 255, 0.64);
    color: white;
}

.btn-primary:hover {
    background-color: rgba(138, 104, 75, 0.64);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 1rem;
    color: rgba(34, 34, 34, 0.64);
}

.feature p {
    font-family: 'Georgia', serif;
    color: rgba(34, 34, 34, 0.64);
    line-height: 1.28;
    font-size: 18px;
    font-weight: 400;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about h2 {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 2rem;
    color: rgba(34, 34, 34, 0.64);
}

.about p {
    font-family: 'Georgia', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.28;
    margin-bottom: 1.5rem;
    color: rgba(34, 34, 34, 0.64);
}

.image-placeholder {
    background-color: #e9ecef;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #666;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1rem;
    color: rgba(34, 34, 34, 0.64);
}

.page-header p {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: rgba(34, 34, 34, 0.64);
}

/* Content Sections */
.booking-content,
.rules-content,
.booking-rules-content {
    padding: 60px 0;
}

.rules-section {
    margin-bottom: 3rem;
}

.rules-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.rules-section ul {
    list-style: none;
    padding-left: 0;
}

.rules-section li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.rules-section li:before {
    content: """;
    color: #8A684B;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.rules-section p {
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
}

/* Booking specific styles */
.booking-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.booking-features ul {
    list-style: none;
    padding: 0;
}

.booking-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.booking-features li:before {
    content: "";
    color: #27ae60;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.booking-iframe-container {
    margin-top: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.iframe-placeholder {
    padding: 3rem;
    text-align: center;
    color: #666;
}

.iframe-placeholder .note {
    font-style: italic;
    margin-top: 1rem;
    color: #888;
}

/* Sidebar */
.booking-sidebar {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.booking-sidebar h3 {
    font-family: 'Georgia', serif;
    color: rgba(34, 34, 34, 0.64);
    margin-bottom: 1rem;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
}

.contact-info,
.quick-info {
    margin-bottom: 2rem;
}

.contact-info p,
.quick-info ul {
    margin-bottom: 0.5rem;
}

.quick-info ul {
    list-style: none;
    padding: 0;
}

.quick-info li {
    padding: 0.3rem 0;
    border-bottom: 1px solid #dee2e6;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

.note {
    background-color: #e3f2fd;
    padding: 1rem;
    border-left: 4px solid #2196f3;
    margin: 1.5rem 0;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .col-md-4,
    .col-md-6,
    .col-md-8 {
        flex: 0 0 100%;
    }

    .features {
        padding: 40px 0;
    }

    .about {
        padding: 40px 0;
    }

    .booking-content,
    .rules-content,
    .booking-rules-content {
        padding: 40px 0;
    }
}

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

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }
    .hero.hero-overlay {
        position: relative;
        height: 100vh;
        overflow: hidden;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero-overlay .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-overlay .brand-logo {
        font-family: 'Georgia', serif;
        font-size: 2.8rem;
        font-weight: 500;
        color: white;
        margin-bottom: 1rem;
        text-transform: uppercase;
    }

    .hero-overlay .brand-logo .subtitle {
        display: block;
        font-family: 'Georgia', cursive;
        font-size: 1.2rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.8);
    }

    .hero-overlay .hero-subtitle {
        font-size: 1.5rem;
        font-weight: 300;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-overlay .highlight {
        font-weight: 700;
        background-color: rgba(255,255,255,0.2);
        padding: 0 5px;
        border-radius: 4px;
    }

    .btn-outline {
        background-color: white;
        color: #5a3e28;
        border: none;
        padding: 1rem 2rem;
        font-weight: 600;
        border-radius: 25px;
        transition: 0.3s ease;
        font-size: 1rem;
        text-decoration: none;
    }

    .btn-outline:hover {
        background-color: #8a684b;
        color: white;
    }

    .location {
        margin-top: 1.5rem;
        color: #fff;
        font-size: 0.95rem;
        opacity: 0.9;
    }

}
