/* Omni Orlando Resort at ChampionsGate Styles */

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

:root {
    --luxury-gold: #DAA520;
    --deep-brown: #8B4513;
    --forest-green: #228B22;
    --cream: #F5F5DC;
    --charcoal: #2F2F2F;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --border-light: #E5E7EB;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--luxury-gold);
    line-height: 1;
}

.nav-logo .logo-subtext {
    font-size: 0.8rem;
    color: var(--deep-brown);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--luxury-gold);
}

.cta-link {
    background: var(--luxury-gold);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.cta-link:hover {
    background: var(--deep-brown);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-brown), var(--luxury-gold), var(--forest-green));
    background-size: 400% 400%;
    animation: luxuryGradient 20s ease infinite;
}

@keyframes luxuryGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

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

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--luxury-gold);
    color: var(--white);
    border: 2px solid var(--luxury-gold);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--luxury-gold);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--deep-brown);
    transform: translateY(-2px);
}

.awards-strip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 2;
}

.award-item {
    background: rgba(255, 255, 255, 0.9);
    color: var(--deep-brown);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Accommodations Section */
.accommodations {
    padding: 100px 0;
    background: var(--light-gray);
}

.rooms-showcase {
    display: grid;
    gap: 4rem;
}

.room-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.room-feature:nth-child(even) {
    direction: rtl;
}

.room-feature:nth-child(even) > * {
    direction: ltr;
}

.room-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.room-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.room-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.room-details p {
    color: var(--charcoal);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.room-amenities {
    list-style: none;
    margin-bottom: 2rem;
}

.room-amenities li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 25px;
    color: var(--charcoal);
}

.room-amenities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--luxury-gold);
    font-weight: bold;
}

.room-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
}

/* Golf Section */
.golf {
    padding: 100px 0;
    background: var(--white);
}

.golf-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.golf-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.golf-info p {
    color: var(--charcoal);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.golf-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.golf-feature h4 {
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.golf-feature p {
    color: var(--charcoal);
    font-size: 0.9rem;
    margin: 0;
}

.golf-image {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(45deg, var(--forest-green), var(--luxury-gold));
}

.golf-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
}

/* Spa Section */
.spa {
    padding: 100px 0;
    background: var(--cream);
}

.spa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spa-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(45deg, #DDA0DD, #E6E6FA);
}

.spa-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.spa-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

.spa-services {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.spa-service h4 {
    color: var(--luxury-gold);
    margin-bottom: 0.5rem;
}

/* Dining Section */
.dining {
    padding: 100px 0;
    background: var(--white);
}

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

.restaurant-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.restaurant-card:hover {
    transform: translateY(-10px);
}

.restaurant-image {
    height: 250px;
}

.restaurant-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.restaurant-info {
    padding: 2rem;
}

.restaurant-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.restaurant-details {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.cuisine {
    background: var(--luxury-gold);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hours {
    color: var(--charcoal);
    font-size: 0.9rem;
}

/* Amenities Section */
.amenities {
    padding: 100px 0;
    background: var(--light-gray);
}

.amenities-showcase {
    display: grid;
    gap: 4rem;
}

.amenity-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.amenity-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(45deg, #00BFFF, #87CEEB);
}

.amenity-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.amenity-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

.amenity-features {
    list-style: none;
}

.amenity-features li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 30px;
    color: var(--charcoal);
}

.amenity-features li::before {
    content: '🏊';
    position: absolute;
    left: 0;
    top: 0.8rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.amenity-card h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--luxury-gold);
}

.contact-text strong {
    color: var(--deep-brown);
    display: block;
    margin-bottom: 0.5rem;
}

.reservation-form {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 15px;
}

.reservation-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--white);
    color: var(--charcoal);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--luxury-gold);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-awards {
    margin-top: 1rem;
    color: var(--luxury-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.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .room-feature,
    .golf-content,
    .spa-content,
    .amenity-highlight,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .awards-strip {
        flex-direction: column;
        gap: 0.5rem;
    }
}