/*
Theme Name: Luxury Hotel
Theme URI: https://example.com
Author: Franklin Barto
Description: A luxury hotel Gutenberg block theme
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luxury-hotel
*/

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

:root {
    --gold: #C9A961;
    --dark: #2C2416;
    --brown: #6B5542;
    --light-gold: #E5D4B5;
    --white: #FFFFFF;
    --cream: #FAF8F3;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--gold);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 36, 22, 0.7), rgba(107, 85, 66, 0.5));
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--gold);
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--light-gold);
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 2rem auto;
}

/* Booking Bar */
.booking-bar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem 4%;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.4s ease;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 36, 22, 0.2);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Social Section */
.social-section {
    background: var(--dark);
    padding: 2.5rem 4%;
    text-align: center;
}

.social-title {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-5px) scale(1.1);
}

/* Content Sections */
.section {
    padding: 8rem 4%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 2rem auto;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--brown);
    max-width: 700px;
    margin: 0 auto;
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.room-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.room-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.room-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
}

/* Room Image Block for WordPress Editor */
.room-image-block {
    margin: 0 !important;
    position: relative;
}

.room-image-block img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.room-card .room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
}

.room-content {
    padding: 2.5rem;
}

.room-title {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.room-description {
    color: var(--brown);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brown);
    font-size: 0.9rem;
}

.room-features li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.8rem;
}

/* Restaurant Section */
.restaurant-section {
    background: var(--cream);
}

.restaurant-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
    position: relative;
}

.restaurant-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(44, 36, 22, 0.5), rgba(44, 36, 22, 0.5));
}

.restaurant-hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.restaurant-hero h2 {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-box {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

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

.feature-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-text {
    color: var(--brown);
    line-height: 1.8;
}

/* Conference Section */
.conference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.conference-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Conference Image Block for WordPress Editor */
.conference-image-block {
    margin: 0 !important;
}

.conference-image-block img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.conference-content h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.conference-content p {
    color: var(--brown);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.conference-list {
    list-style: none;
    margin: 2rem 0;
}

.conference-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--brown);
}

.conference-list li::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.8rem;
}

/* Booking Form Section */
.booking-form-section {
    background: var(--cream);
}

.booking-form-container {
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-radius: 0;
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--gold) !important;
}

.price-badge {
    background: var(--gold);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
}

.price-badge.executive {
    background: var(--brown);
}

.price-badge.premium {
    background: var(--dark);
}

/* Trust Benefits Grid */
.trust-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-benefit {
    padding: 2rem 1.5rem;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.trust-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

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

.trust-benefit h4 {
    color: var(--dark);
    margin: 0 0 0.8rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.trust-benefit p {
    color: var(--brown);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.booking-process-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.room-type-card {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.room-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.quick-booking-options {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.quick-booking-options .wp-block-button {
    margin-bottom: 1rem;
}

.quick-booking-options .wp-block-button__link {
    padding: 1.2rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.quick-booking-options .wp-block-button__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    padding: 2rem 0;
}

.trust-badge {
    padding: 1.5rem;
}

.trust-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--gold);
}

.trust-badge p {
    color: var(--dark);
    font-weight: 600;
    margin: 0;
}

/* Booking Calendar Plugin Styling */
.booking-form-container .wpbc_container {
    max-width: 100%;
}

.booking-form-container .wpbc_calendar {
    margin: 0 auto;
}

.booking-form-container .wpbc_form {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 4% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 968px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 3rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .section-title {
        font-size: 2.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid .wp-block-columns {
        flex-wrap: wrap;
    }
    
    .rooms-grid .wp-block-column {
        flex-basis: 100% !important;
    }

    .conference-grid {
        grid-template-columns: 1fr;
    }
    
    .conference-grid .wp-block-columns {
        flex-wrap: wrap;
    }
    
    .conference-grid .wp-block-column {
        flex-basis: 100% !important;
    }

    .booking-container {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 4rem 4%;
    }
}