/* ===== GLOBAL ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body{
margin:0;
font-family:'Inter','Rajdhani',sans-serif;
color:#f8fafc;
background-color: #290f4c;
overflow-x:hidden;

background: linear-gradient(135deg, #1e0934, #290f4c, #1a083d);
background-attachment:fixed;
scroll-behavior: smooth;
position: relative;
line-height: 1.6;
}

/* Add a global ambient glow to the body */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -20%;
    width: 100vw;
    height: 100vw;
    background: radial-gradient(circle, rgba(143, 251, 25, 0.05) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
    animation: floatOrb 20s infinite alternate ease-in-out;
}
body::after {
    content: '';
    position: fixed;
    bottom: -50%;
    right: -20%;
    width: 100vw;
    height: 100vw;
    background: radial-gradient(circle, rgba(20, 89, 230, 0.08) 0%, transparent 50%);

    z-index: -1;
    pointer-events: none;
    animation: floatOrb2 25s infinite alternate ease-in-out;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10vw, 10vh); }
}
@keyframes floatOrb2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-10vw, -10vh); }
}



@keyframes fluidBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}
.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== GLASSMORPHISM EFFECTS ===== */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.glass:hover::before {
    left: 150%;
}


/* ===== HEADER / NAVBAR ===== */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-area:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 45px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.6));
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.logo-text {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #38bdf8, #818cf8, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    padding: 8px 0;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8, #c084fc);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ===== HAMBURGER ===== */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 30px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background: #38bdf8;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 5px rgba(56, 189, 248, 0.5);
}

/* Toggle Menu Animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ===== HERO ===== */

.hero{
height:90vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
}

.hero-title{
font-family:'Orbitron', 'Inter', sans-serif;
font-weight: 800;
font-size:72px;
margin-bottom: 20px;
color: #ffffff;
text-shadow: 0 5px 25px rgba(20, 89, 230, 0.8), 0 0 10px #8ffb19;
letter-spacing: 2px;
}

.glow{
text-shadow: 0 0 20px rgba(113, 222, 11, 0.6), 0 0 40px rgba(20, 89, 230, 0.4);
}

.btn-primary{
margin-top:30px;
padding:12px 35px;
background: linear-gradient(to bottom, #a0fc2e, #71de0b);
color: #004d00;
border-radius:50px;
text-decoration:none;
font-weight: 800;
font-family: 'Orbitron', sans-serif;
font-size: 16px;
letter-spacing: 1px;
transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 5px 20px rgba(113, 222, 11, 0.5), inset 0px 2px 5px rgba(255,255,255,0.7);
display: inline-block;
border: 2px solid #b8ff5c;
text-transform: uppercase;
}

.btn-primary:hover{
transform: translateY(-3px) scale(1.05);
box-shadow: 0 10px 30px rgba(113, 222, 11, 0.8), inset 0px 2px 5px rgba(255,255,255,0.9);
color: #003300;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #8ffb19;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(143, 251, 25, 0.2);
    display: inline-block;
    text-transform: uppercase;
}
.btn-secondary:hover {
    background: rgba(143, 251, 25, 0.1);
    box-shadow: 0 0 25px rgba(143, 251, 25, 0.5);
    transform: translateY(-3px) scale(1.05);
}


/* ===== TERMINAL ===== */

.terminal{
font-family:monospace;
background:black;
padding:20px;
margin-bottom:20px;
color:#00ff9c;
border-radius:10px;
border:1px solid #0f172a;
}


/* ===== SECTION ===== */

.section{
padding:120px 10%;
max-width:1200px;
margin:auto;
}

.section-title{
font-family:'Inter', sans-serif;
font-weight: 600;
font-size:42px;
letter-spacing: -1.5px;
margin-bottom:60px;
}


/* ===== GRID ===== */

.services-grid,
.portfolio-grid,
.team-grid,
.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}


/* ===== CARDS ===== */

.service-card,
.portfolio-item,
.contact-box{
background:rgba(255,255,255,0.03);
backdrop-filter: blur(24px);
padding:40px 30px;
border-radius:24px;
border:1px solid rgba(255,255,255,0.05);
border-top:1px solid rgba(255,255,255,0.1);
box-shadow: 0 4px 24px -4px rgba(0,0,0,0.5);
transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.portfolio-item:hover{
transform:translateY(-8px) scale(1.01);
box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6);
border-color: rgba(255,255,255,0.15);
}


/* ===== TEAM ===== */

.member img{
width:100%;
border-radius:20px;
margin-bottom:10px;
}


/* ===== IMAGE SLIDER ===== */

.slider-section{
display:flex;
justify-content:center;
align-items:center;
padding:40px 0;
}

.slider{
width:1200px;
height:675px;
max-width:95%;
overflow:hidden;
border-radius:15px;
box-shadow:0 0 40px rgba(0,0,0,0.6);
position:relative;
}

.slide{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1s;
}

.slide.active{
opacity:1;
}


/* ===== FOOTER ===== */

.footer{
margin-top:100px;
padding:80px 10%;
background:#04091a;
border-top:1px solid rgba(255,255,255,0.05);
}

.footer-grid{
display:grid;
grid-template-columns:1.5fr 1fr 1.5fr;
gap:60px;
max-width:1100px;
margin:0 auto;
align-items:start;
}

.footer-grid h3{
font-family:'Inter', sans-serif;
font-weight: 700;
font-size: 24px;
color:#f8fafc;
}

.footer-grid h4{
color:#94a3b8;
margin-bottom:15px;
font-weight: 500;
}

.footer-grid a{
display:block;
color:#64748b;
text-decoration:none;
margin:10px 0;
transition: color 0.3s;
}

.footer-grid a:hover{
color:#f8fafc;
}

.copyright{
text-align:center;
margin-top:60px;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.05);
color:#475569;
font-size: 14px;
}

.footer-grid div:nth-child(2){
text-align:center;
}
.footer-grid div:nth-child(2) a{
display:block;
margin:10px 0;
}

/* ===== AUTO SLIDER ===== */

.slider-section{

display:flex;
justify-content:center;
align-items:center;

padding:40px 0;

}

.slider{

width:1200px;
height:600px;

max-width:95%;

position:relative;

overflow:hidden;

border-radius:20px;

box-shadow:0 0 40px rgba(0,0,0,0.5);

}

.slide{

position:absolute;

width:100%;
height:100%;

object-fit:cover;

opacity:0;

transition:opacity 1s ease;

}

.slide.active{
opacity:1;
}

/* ===== COMPETITION SLIDER ===== */

.competition{

padding:80px 10%;

}

.carousel{

position:relative;

display:flex;
align-items:center;

}

.carousel-track{

display:flex;

gap:30px;

overflow:hidden;

scroll-behavior:smooth;

}

.card{

min-width:300px;

background:#071246;

border-radius:20px;

padding:15px;

text-align:center;

color:white;

}

.card img{

width:100%;

height:180px;

object-fit:cover;

border-radius:15px;

margin-bottom:10px;

}

.card p{

font-size:18px;

font-weight:500;

}

/* arrows */

.arrow{

position:absolute;

top:40%;

background:white;

border:none;

width:40px;
height:40px;

border-radius:50%;

cursor:pointer;

font-size:20px;

}

.left{
left:-20px;
}

.right{
right:-20px;
}

/* ===== MODAL ===== */

.modal{

display:none;

position:fixed;

z-index:999;

left:0;
top:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.9);

text-align:center;

padding-top:60px;

}

.modal img{

max-width:80%;

border-radius:10px;

}

.modal h3{
color:white;
margin-top:20px;
}

.modal p{
color:#ccc;
}

.close{

position:absolute;

top:20px;
right:40px;

font-size:40px;

color:white;

cursor:pointer;

}
/* ===== GALLERY MODAL ===== */

.gallery-modal{

display:none;
position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.85);

z-index:999;

display:flex;
justify-content:center;
align-items:center;

}

/* กล่องรูป */

.modal-content{

max-width:700px;
width:80%;

animation:zoomIn 0.35s ease;

}

/* รูปใน popup */
.gallery-modal img{

width: auto;
height: auto;

max-width: 55%;
max-height: 75%;

border-radius:12px;

box-shadow:0 0 40px rgba(0,0,0,0.8);

animation: zoomIn 0.35s ease;

}


/* ปุ่มปิด */

.close{

position:absolute;

top:20px;
right:35px;

font-size:35px;
color:white;

cursor:pointer;

}

/* ปุ่มเลื่อน */

.nav-btn{

position:absolute;

top:50%;

transform:translateY(-50%);

background:white;

border:none;

font-size:25px;

padding:8px 14px;

border-radius:50%;

cursor:pointer;

}

.left{
left:30px;
}

.right{
right:30px;
}

/* ===== ZOOM ANIMATION ===== */

@keyframes zoomIn{

0%{
transform:scale(0.7);
opacity:0;
}

100%{
transform:scale(1);
opacity:1;
}

}

.gallery-modal img:hover{

transform:scale(1.03);
transition:0.3s;

}

.card{
display:block;
text-decoration:none;
color:white;
}

/* ===== MOBILE PROJECT DETAIL ===== */

@media (max-width:768px){

.detail-grid{

grid-template-columns:1fr;

}

.detail-image img{

width:100%;
height:auto;

}

.detail-card{

margin-top:15px;

}

}

.carousel{
position:relative;
}

.carousel-track{
display:flex;
gap:25px;
overflow-x:auto;
scroll-behavior:smooth;
}

.arrow{
position:absolute;
top:40%;

width:40px;
height:40px;

border-radius:50%;
border:none;

background:white;

cursor:pointer;

z-index:10;
}

.arrow.left{
left:-20px;
}

.arrow.right{
right:-20px;
}

.carousel-track::-webkit-scrollbar{
display:none;
}

/* ===== DISNEY MAGIC THEME (Phase 3) ===== */

/* SVG Dividers */
.hero {
    position: relative;
    overflow: hidden;
}
.wave-bottom, .cloud-top, .cloud-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
}
.wave-bottom {
    bottom: -1px;
    height: 120px;
}
.cloud-top {
    top: -1px;
    height: 120px;
}
.cloud-bottom {
    bottom: -1px;
    height: 120px;
}

/* Disney Hero Background Override */
.disney-hero {
    background: linear-gradient(to bottom, rgba(13, 7, 29, 0.2), rgba(8, 15, 45, 0.5)),
                url("assets/พื้นหลัง1.png") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.hero-content {
    z-index: 10;
    position: relative;
    text-align: center;
    margin-top: -25vh; /* Move content up further to avoid covering the 3D character */
    margin-bottom: 50px;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(to bottom, #1459e6, #3f2ca5);
    padding: 100px 10% 120px;
    text-align: center;
    position: relative;
}
.welcome-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.welcome-text {
    font-size: 20px;
    color: #e2e8f0;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}
.welcome-video-placeholder {
    max-width: 800px;
    margin: 0 auto;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border-radius: 12px;
}

/* ===== SKILL BADGES ===== */
.skill-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin: 5px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}
.skill-badge:hover {
    background: #8ffb19;
    border-color: #8ffb19;
    color: #003300;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(113, 222, 11, 0.5);
}

/* Featured Section */
.featured-section {
    background: linear-gradient(to bottom, #3f2ca5, #5a30a8);
    padding: 100px 10%;
    position: relative;
}
.featured-title {
    text-align: center;
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 50px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.featured-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
.featured-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(143, 251, 25, 0.2);
    border-color: #8ffb19;
}
.featured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #7c3aed;
}
.card-info {
    padding: 20px;
}
.badge {
    background: #38bdf8;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: inline-block;
}
.card-info h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #f8fafc;
}
.read-more {
    color: #38bdf8;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}
.read-more:hover {
    color: #7c3aed;
}

/* Gallery Section */
.gallery-section {
    background-color: #f8fafc; /* Keep clouds section light like the reference */
    padding: 150px 0;
    position: relative;
    text-align: center;
    overflow: visible;
}
.gallery-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 50px;
    color: #1e293b;
    text-transform: uppercase;
}
.gallery-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.polaroid {
    background: #fff;
    padding: 15px 15px 40px 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    position: relative;
    max-width: 300px;
    border: 1px solid #e2e8f0;
}
.polaroid img {
    width: 100%;
    height: auto;
    display: block;
}
.polaroid .caption {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #94a3b8;
    font-size: 20px;
    left: 0;
}
.polaroid:hover {
    z-index: 10 !important;
    transform: scale(1.15) rotate(0deg) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* CTA Section */
.facts-section {
    background: linear-gradient(135deg, #3b1b6e, #290f4c);
    padding: 120px 10%;
    text-align: center;
    position: relative;
}
.facts-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}
.fact-item i {
    font-size: 40px;
    color: #facc15;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
}
.fact-item h3 {
    font-size: 36px;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    color: #38bdf8;
}
.fact-item p {
    font-size: 14px;
    font-weight: bold;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ===== PHASE 4: STUDIO DEEP NEON THEME ===== */

/* Activities Page Styles */
.activities-hero {
    position: relative;
    padding: 120px 10% 80px;
    background: radial-gradient(circle at center 30%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activities-title {
    font-size: 56px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 20px;
}

.activities-desc {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Neon Cards & Buttons -> Premium Frosted */
.neon-btn {
    background: #f8fafc;
    color: #020617;
    border: none;
    padding: 12px 30px;
    border-radius: 100px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}
.neon-btn:hover {
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
    transform: translateY(-2px);
    background: #ffffff;
}

.info-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding: 50px 10%;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.info-col {
    flex: 1;
    min-width: 250px;
}
.info-col h3 {
    font-size: 22px;
    color: #f8fafc;
    margin-bottom: 15px;
}
.info-col p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Glowing Image Grid -> Premium Frosted Grid */
.neon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 80px 10%;
}
.neon-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px -4px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.neon-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.7);
    transform: translateY(-8px);
}
.neon-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}
.neon-card h4 {
    margin: 0 0 5px 0;
    color: #f8fafc;
    font-size: 18px;
}
.neon-card p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
}

/* Activities Footer Block */
.bottom-ui-section {
    background: #04091a;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 10%;
    margin-top: 50px;
    color: #f8fafc;
}
.bottom-ui-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    font-size: 32px;
    color: #f8fafc;
    margin-bottom: 40px;
}
.bottom-ui-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.light-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 24px -4px rgba(0,0,0,0.5);
    min-height: 150px;
}

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 768px) {
    /* Navbar & Hamburger Menu */
    .header {
        padding: 15px 5%;
    }
    .logo-text {
        font-size: 20px !important;
    }
    .logo-img {
        width: 35px !important;
    }
    .menu-toggle {
        display: flex !important;
        z-index: 1002;
    }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        align-items: center;
        justify-content: center;
        padding-top: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        gap: 35px;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 24px;
        color: #f8fafc;
    }

    /* Hero Resizing */
    .disney-hero {
        background-attachment: scroll !important;
    }
    .hero-title, .activities-title {
        font-size: 34px !important;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    #typing {
        font-size: 16px !important;
        height: auto !important;
        min-height: 24px;
        margin-bottom: 30px !important;
    }
    .hero-content {
        margin-top: -60px;
        padding: 0 20px;
    }
    
    /* Buttons */
    .btn-primary, .btn-secondary, .neon-btn {
        padding: 12px 25px !important;
        font-size: 15px !important;
        margin: 10px 5px !important;
        width: 100%;
        max-width: 250px;
        display: inline-block;
        box-sizing: border-box;
    }

    /* Section Padding reductions */
    .section,
    .welcome-section, 
    .featured-section, 
    .gallery-section, 
    .facts-section, 
    .info-columns,
    .bottom-ui-section,
    .competition {
        padding: 60px 6% !important;
    }

    /* Titles Resize */
    .welcome-title, 
    .featured-title, 
    .gallery-title, 
    .facts-title, 
    .bottom-ui-title,
    .section-title {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }

    /* Adjust Card Grids */
    .featured-grid,
    .neon-grid,
    .bottom-ui-grid,
    .gallery-carousel,
    .services-grid,
    .portfolio-grid,
    .team-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer {
        padding: 60px 6%;
        margin-top: 50px;
    }

    /* Carousel */
    .slider {
        width: 100%;
        height: 200px;
        border-radius: 10px;
    }
    
    /* Welcome text / Subtitles */
    .welcome-text,
    .activities-desc,
    .about-text p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    
    /* Timeline adjustments */
    .timeline {
        padding-left: 15px !important;
    }

    /* SVG adjustments to avoid huge gaps on mobile */
    .wave-bottom, .cloud-top, .cloud-bottom {
        height: 50px;
    }
    
    .polaroid {
        transform: rotate(0) !important;
        margin-bottom: 20px;
        scale: 1 !important;
        width: 100%;
        box-sizing: border-box;
    }
}