/* Wyndham Grand Orlando Bonnet Creek Styles */

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

:root {
    --wyndham-blue: #003366;
    --luxury-gold: #B8860B;
    --elegant-green: #2E8B57;
    --cream: #F5F5DC;
    --white: #FFFFFF;
    --dark-text: #2C3E50;
}

body { font-family: 'Source Sans Pro', sans-serif; line-height: 1.6; color: var(--dark-text); }

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

.navbar {
    position: fixed; top: 0; width: 100%; background: rgba(255, 255, 255, 0.95);
    z-index: 1000; padding: 1rem 0;
}

.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: 'Playfair Display', serif; font-size: 1.5rem;
    font-weight: 700; color: var(--wyndham-blue);
}

.nav-logo .logo-subtext {
    font-size: 0.8rem; color: var(--luxury-gold);
    font-weight: 600; letter-spacing: 1px;
}

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

.nav-link {
    color: var(--dark-text); text-decoration: none;
    font-weight: 600; transition: color 0.3s ease;
}

.nav-link:hover { color: var(--wyndham-blue); }

.cta-link {
    background: linear-gradient(135deg, var(--wyndham-blue), var(--luxury-gold));
    color: var(--white) !important;
    padding: 10px 20px; border-radius: 25px;
}

.hero {
    height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    background: linear-gradient(135deg, var(--wyndham-blue), var(--elegant-green), var(--luxury-gold));
    color: var(--white);
}

.hero-title {
    font-family: 'Playfair Display', serif; font-size: 4rem;
    font-weight: 700; margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9;
}

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

.btn-primary {
    background: var(--white); color: var(--wyndham-blue);
}

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

.luxury-features {
    display: flex; gap: 2rem; margin-top: 2rem;
    flex-wrap: wrap; justify-content: center;
}

.luxury-feature {
    background: rgba(255, 255, 255, 0.9); color: var(--wyndham-blue);
    padding: 0.5rem 1rem; border-radius: 20px;
    font-size: 0.9rem; font-weight: 600;
}

.amenities { padding: 100px 0; background: var(--cream); }

.section-title {
    font-family: 'Playfair Display', serif; font-size: 2.5rem;
    color: var(--wyndham-blue); text-align: center; margin-bottom: 1rem;
}

.amenities-highlight {
    background: var(--white); padding: 3rem; border-radius: 15px;
    margin-bottom: 3rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.amenity-info h3 {
    font-family: 'Playfair Display', serif; font-size: 2rem;
    color: var(--luxury-gold); margin-bottom: 1rem;
}

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

.amenity-features li {
    padding: 0.5rem 0; position: relative; padding-left: 25px;
}

.amenity-features li::before {
    content: '🏆'; position: absolute; left: 0;
}

.amenities-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 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.1);
    transition: transform 0.3s ease;
}

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

.amenity-card h4 {
    font-family: 'Playfair Display', serif; color: var(--wyndham-blue);
    margin-bottom: 1rem;
}

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

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

.restaurant-card {
    background: var(--cream); padding: 2rem; border-radius: 15px;
    text-align: center; transition: transform 0.3s ease;
}

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

.restaurant-card h3 {
    font-family: 'Playfair Display', serif; color: var(--wyndham-blue);
    margin-bottom: 1rem;
}

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

.spa-info h3 {
    font-family: 'Playfair Display', serif; font-size: 2rem;
    color: var(--elegant-green); margin-bottom: 1rem;
}

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

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

.contact-info h2 {
    font-family: 'Playfair Display', serif; color: var(--wyndham-blue);
    margin-bottom: 1.5rem;
}

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

.contact-item strong {
    color: var(--luxury-gold); display: block; margin-bottom: 0.5rem;
}

.booking-form {
    background: var(--cream); padding: 2.5rem; border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    font-family: 'Playfair Display', serif; color: var(--wyndham-blue);
    margin-bottom: 2rem; text-align: center;
}

.form-group {
    display: flex; flex-direction: column; margin-bottom: 1.5rem;
}

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

.form-group input {
    padding: 12px; border: 1px solid var(--luxury-gold);
    border-radius: 8px; transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none; border-color: var(--wyndham-blue);
}

.btn-full { width: 100%; }

.footer {
    background: var(--dark-text); color: var(--white);
    padding: 40px 0; text-align: center;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .contact-content { grid-template-columns: 1fr; gap: 2rem; }
    .luxury-features { gap: 1rem; }
}