/* Four Seasons Resort Orlando - Luxury Style Sheet */

/* Color Palette - Elegant Gold & Cream */
:root {
    --primary-gold: #B8860B;
    --secondary-cream: #F5E6D3;
    --accent-champagne: #F7E7CE;
    --text-dark: #2C2416;
    --text-light: #5D4E37;
    --white: #FFFFFF;
    --light-gray: #F8F5F0;
    --border-gold: #D4AF37;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 400;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-style: italic;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tagline {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 300;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    background: linear-gradient(rgba(44, 36, 22, 0.3), rgba(44, 36, 22, 0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23F5E6D3" width="1920" height="1080"/><path fill="%23B8860B" opacity="0.1" d="M0 540L80 520L160 560L240 530L320 570L400 540L480 580L560 550L640 590L720 560L800 600L880 570L960 610L1040 580L1120 620L1200 590L1280 630L1360 600L1440 640L1520 610L1600 650L1680 620L1760 660L1840 630L1920 670V1080H0V540Z"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 230, 211, 0.1);
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    animation: fadeIn 1.5s ease;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

.cta-button:hover {
    background: var(--border-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.hero-features {
    position: absolute;
    bottom: 3rem;
    display: flex;
    gap: 3rem;
    z-index: 1;
}

.feature {
    text-align: center;
    color: var(--white);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.lead-text {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-cream) 0%, var(--accent-champagne) 100%);
    position: relative;
}

.image-placeholder.luxury-resort::after {
    content: "Luxury Resort View";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-style: italic;
}

/* Rooms Section */
.rooms {
    padding: 5rem 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.room-card {
    background: var(--white);
    border: 1px solid var(--secondary-cream);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.room-card.featured {
    border: 2px solid var(--primary-gold);
}

.room-image {
    height: 250px;
    background: var(--secondary-cream);
    position: relative;
}

.room-image::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-gold);
    font-style: italic;
}

.room-image.deluxe-room::after {
    content: "Park View Room";
}

.room-image.premium-suite::after {
    content: "Royal Suite";
}

.room-image.lake-view::after {
    content: "Lake View Suite";
}

.room-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--text-dark);
}

.room-card p {
    padding: 0 1.5rem 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.room-features {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
}

.room-features li {
    padding: 0.25rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.room-features li::before {
    content: "✓ ";
    color: var(--primary-gold);
    font-weight: bold;
}

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

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.amenity-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--secondary-cream);
    transition: all 0.3s ease;
}

.amenity-card:hover {
    border-color: var(--primary-gold);
}

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

.amenity-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.amenity-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Dining Section */
.dining {
    padding: 5rem 0;
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.dining-card {
    background: var(--white);
    border: 1px solid var(--secondary-cream);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.dining-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dining-image {
    height: 300px;
    background: var(--secondary-cream);
    position: relative;
}

.dining-card.featured .dining-image {
    height: 100%;
}

.dining-image::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-style: italic;
}

.dining-image.capa::after {
    content: "Rooftop Dining";
}

.dining-image.ravello::after {
    content: "Italian Cuisine";
}

.dining-image.plancha::after {
    content: "Poolside Dining";
}

.dining-content {
    padding: 2rem;
}

.dining-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cuisine-type {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-style: italic;
    display: block;
    margin-bottom: 1rem;
}

.dining-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dining-details {
    display: flex;
    gap: 1rem;
}

.dining-details span {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background: var(--light-gray);
    border-radius: 20px;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.detail h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.detail p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.detail a {
    color: var(--primary-gold);
    text-decoration: none;
}

.detail a:hover {
    text-decoration: underline;
}

/* Form Styles */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--secondary-cream);
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--secondary-cream);
    margin-bottom: 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.submit-button {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
    width: 100%;
}

.submit-button:hover {
    background: var(--border-gold);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--border-gold);
}

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

.footer-bottom a {
    color: var(--primary-gold);
    text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-grid,
    .rooms-grid,
    .amenities-grid,
    .dining-grid,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .dining-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}