/* Disney's All-Star Movies Resort - Magical Movie Theme Styling */

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

body {
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #FFE66D, #A8E6CF);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    border-radius: 50%;
    border: 2px solid #FFD700;
}

.brand-text {
    color: #FFD700;
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.nav-menu a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.nav-menu a:hover {
    color: #FFF;
    transform: scale(1.1);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 2rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.movie-reel {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 20px solid #FFD700;
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.movie-reel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #FFD700;
    border-radius: 50%;
}

.movie-reel:nth-child(1) {
    top: 10%;
    right: 10%;
    opacity: 0.3;
}

.movie-reel-2 {
    top: 60%;
    left: 5%;
    opacity: 0.2;
    animation-direction: reverse;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: bounce 2s ease-in-out infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0px); }
    to { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #FFF;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-description {
    font-size: 1.2rem;
    color: #F0F8FF;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    border: 3px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    background: #FFD700;
    color: #1e3c72;
    transform: translateY(-3px);
}

.disney-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.perk {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #FFF;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-characters {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.character-icon {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.character-icon:nth-child(1) { animation-delay: 0s; }
.character-icon:nth-child(2) { animation-delay: 0.5s; }
.character-icon:nth-child(3) { animation-delay: 1s; }
.character-icon:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Movie Zones Section */
.movie-zones {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.movie-zones h2 {
    text-align: center;
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.zone-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.zone-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.zone-card.fantasia {
    border-color: #9b59b6;
}

.zone-card.toy-story {
    border-color: #e74c3c;
}

.zone-card.love-bug {
    border-color: #f39c12;
}

.zone-card.mighty-ducks {
    border-color: #3498db;
}

.zone-card.dalmatians {
    border-color: #2c3e50;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.zone-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.zone-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.zone-card p {
    color: #666;
    line-height: 1.6;
}

/* Rooms Section */
.rooms {
    padding: 80px 0;
    background: white;
}

.rooms h2 {
    text-align: center;
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 3rem;
}

.room-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.room-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-info {
    padding: 2rem;
    color: white;
}

.room-info h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.room-features {
    margin-bottom: 2rem;
}

.feature {
    padding: 0.5rem 0;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.room-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFD700;
    text-align: right;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Amenities Section */
.amenities {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
}

.amenities h2 {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.amenity-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.amenity-card .image-placeholder {
    height: 150px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    margin-bottom: 1rem;
}

.room-card .image-placeholder {
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    margin: 0;
    border-radius: 0;
}

.dining-card .image-placeholder {
    height: 200px;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    margin: 0;
    border-radius: 0;
}

.hero .image-placeholder {
    height: 300px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1e3c72;
}

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

.amenity-card h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.amenity-card p {
    color: #666;
    line-height: 1.6;
}

/* Dining Section */
.dining {
    padding: 80px 0;
    background: white;
}

.dining h2 {
    text-align: center;
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 3rem;
}

.dining-venues {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.venue-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: white;
}

.venue-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.venue-info {
    padding: 2rem;
}

.venue-info h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.venue-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cuisine-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cuisine {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.venue-hours {
    font-size: 0.9rem;
    color: #FFD700;
}

/* Activities Section */
.activities {
    padding: 80px 0;
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.activities h2 {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.activities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.activities-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.activities-text h3 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.activities-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.activities-list {
    list-style: none;
}

.activities-list li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 1.1rem;
}

.theme-parks {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.theme-parks h3 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.park-card {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    transition: transform 0.3s ease;
}

.park-card:hover {
    transform: scale(1.05);
}

.park-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.park-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.park-card p {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 3rem;
}

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

.contact-info h3 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 15px;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.disney-benefits {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
}

.disney-benefits h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.disney-benefits ul {
    list-style: none;
}

.disney-benefits li {
    padding: 0.3rem 0;
}

.booking-form {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    padding: 2rem;
    border-radius: 20px;
    color: white;
}

.booking-form h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

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

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.disney-logo {
    font-size: 2rem;
    margin-top: 1rem;
}

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

/* Mobile Navigation */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 999;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 1rem 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-characters {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .zones-grid {
        grid-template-columns: 1fr;
    }
    
    .room-types {
        grid-template-columns: 1fr;
    }
    
    .dining-venues {
        grid-template-columns: 1fr;
    }
    
    .activities-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .parks-grid {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder {
        height: 150px;
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    .hero .image-placeholder {
        height: 200px;
    }
    
    .amenity-card .image-placeholder {
        height: 120px;
    }
}