/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 103, 197, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(46, 139, 87, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Celebrate Section */
.celebrate-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #000000 100%);
    color: white;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.celebrate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 69, 0, 0.08) 0%, transparent 50%);
    animation: celebrateGlow 8s ease-in-out infinite alternate;
}

@keyframes celebrateGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.celebrate-section .section-title {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 4rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.celebrate-content {
    max-width: 800px;
    margin: 0 auto;
}

.celebrate-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
}

.celebrate-video video,
.celebrate-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Zootopia Section */
.zootopia-section {
    background: linear-gradient(135deg, #2E8B57 0%, #228B22 100%);
    color: white;
    padding: 80px 0;
}

.zootopia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zootopia-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.zootopia-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.zootopia-image {
    text-align: center;
}

.zootopia-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Attractions Grid */
.attractions-grid {
    padding: 80px 0;
}

.attractions-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.attraction-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.attraction-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.05);
}

.attraction-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.attraction-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.attraction-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.attraction-link {
    color: #0067C5;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
    margin-top: auto;
}

.attraction-link:hover {
    color: #005BB5;
}

.attraction-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.attraction-link:hover::after {
    transform: translateX(4px);
}

/* Land Sections */
.land-section {
    padding: 100px 0;
}

.land-header {
    text-align: center;
    margin-bottom: 60px;
}

.land-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
}

.land-attractions {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.attraction-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Pandora Section */
.pandora-section {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
}

.pandora-section .land-title {
    color: white;
}

.pandora-section .attraction-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pandora-section .attraction-content h3,
.pandora-section .attraction-content p {
    color: white;
}

.pandora-section .attraction-link {
    color: #64b5f6;
}

.pandora-section .attraction-link:hover {
    color: #90caf9;
}

/* More Magic Section */
.more-magic-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.magic-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.magic-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.magic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.magic-image {
    height: 200px;
    overflow: hidden;
}

.magic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.magic-card:hover .magic-image img {
    transform: scale(1.05);
}

.magic-content {
    padding: 24px;
}

.magic-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.magic-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.magic-link {
    color: #0067C5;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.magic-link:hover {
    color: #005BB5;
}

.magic-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.magic-link:hover::after {
    transform: translateX(3px);
}

/* Other Parks Section */
.other-parks-section {
    padding: 100px 0;
}

.parks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.park-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.park-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.park-image {
    height: 250px;
    overflow: hidden;
}

.park-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.park-card:hover .park-image img {
    transform: scale(1.05);
}

.park-content {
    padding: 24px;
}

.park-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.park-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.park-link {
    color: #0067C5;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.park-link:hover {
    color: #005BB5;
}

.park-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.park-link:hover::after {
    transform: translateX(4px);
}

/* Extra Magic Section */
.extra-magic-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.extra-magic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.extra-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.extra-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.extra-image {
    height: 180px;
    overflow: hidden;
}

.extra-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.extra-card:hover .extra-image img {
    transform: scale(1.05);
}

.extra-content {
    padding: 20px;
}

.extra-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.extra-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.extra-link {
    color: #0067C5;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.extra-link:hover {
    color: #005BB5;
}

.extra-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.extra-link:hover::after {
    transform: translateX(3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .zootopia-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .zootopia-text h2 {
        font-size: 2rem;
    }
    
    .land-section {
        padding: 60px 0;
    }
    
    .land-title {
        font-size: 2.5rem;
    }
    
    .attractions-row,
    .attraction-cards-grid,
    .magic-cards,
    .parks-grid,
    .extra-magic-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .celebrate-section .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .attraction-image,
    .park-image {
        height: 200px;
    }
    
    .magic-image,
    .extra-image {
        height: 150px;
    }
    
    .attraction-content,
    .park-content {
        padding: 20px;
    }
    
    .magic-content,
    .extra-content {
        padding: 16px;
    }
}