:root {
    --bg-dark: #060b14;
    --teal: #00f2ea;
    --purple: #a855f7;
    --white: #f8fafc;
    --glass: rgba(6, 11, 20, 0.95);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    background: var(--bg-dark);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* --- NAVIGATION --- */
.floating-header {
    position: fixed;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    width: 90%; max-width: 1200px;
    z-index: 3000;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 12px 30px;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 40px; }
.brand-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; }

.main-nav a {
    color: var(--white); text-decoration: none; font-size: 0.8rem; font-weight: 600;
    margin: 0 15px; text-transform: uppercase; transition: 0.3s;
}
.main-nav a:hover { color: var(--teal); }
.menu-toggle { display: none; cursor: pointer; font-size: 1.4rem; }

/* --- HERO --- */
.hero-section {
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.5), var(--bg-dark)), 
                url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?q=80&w=2070') center/cover;
    text-align: center;
}

.hero-title { font-family: 'Montserrat', sans-serif; font-size: clamp(2.5rem, 7vw, 4rem); font-weight: 800; }
.glow-text { background: linear-gradient(to right, #fff, var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.cta-button {
    margin-top: 30px; display: inline-block; padding: 15px 40px;
    background: linear-gradient(135deg, var(--teal), var(--purple));
    color: white; text-decoration: none; border-radius: 50px; font-weight: 700;
}

/* --- ABOUT SECTION (1/5 SPLIT) --- */
.about-full { padding: 100px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.about-split {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255,255,255,0.02);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.05);
}

.about-image-side {
    flex: 1; 
    display: flex;
    justify-content: center;
}

.side-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
}

.about-text-content {
    flex: 4;
}

.section-subtitle { color: var(--teal); font-weight: 700; letter-spacing: 2px; font-size: 0.8rem; }
.section-main-title { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; margin: 10px 0 20px; }
.text-block p { color: #cbd5e1; line-height: 1.7; margin-bottom: 15px; }
.about-stats { display: flex; gap: 30px; margin-top: 20px; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--teal); display: block; }
.stat-label { font-size: 0.7rem; color: #64748b; text-transform: uppercase; }

/* --- GALLERY (FIXED CENTERING) --- */
.gallery-wrapper { padding: 80px 0; width: 100%; }
.centered { text-align: center; }
.large-title { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; margin-bottom: 40px; }

.carousel-box { 
    position: relative; 
    max-width: 900px; /* Adjust width as needed */
    margin: 0 auto; /* This forces it to the middle */
    aspect-ratio: 16/9; 
    border-radius: 25px; 
    overflow: hidden; 
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.carousel-display img { position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: 0.8s; }
.carousel-display img.active { opacity: 1; }

.carousel-nav { position: absolute; top: 50%; width: 100%; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 20px; z-index: 10; }
.nav-arrow { background: rgba(0,0,0,0.5); color: white; border: none; width: 45px; height: 45px; border-radius: 50%; cursor: pointer; transition: 0.3s; }
.nav-arrow:hover { background: var(--teal); color: #000; }

.carousel-indicators { display: flex; justify-content: center; gap: 10px; margin-top: 25px; }
.indicator-dot { width: 10px; height: 10px; background: rgba(255,255,255,0.2); border-radius: 50%; cursor: pointer; transition: 0.4s; }
.indicator-dot.active { background: var(--teal); width: 35px; border-radius: 10px; }

/* --- SOCIAL --- */
.social-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; padding: 40px 0; }
.social-card { background: rgba(255,255,255,0.03); padding: 30px; border-radius: 20px; min-width: 180px; text-align: center; text-decoration: none; color: white; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.social-card i { font-size: 2rem; color: var(--teal); margin-bottom: 10px; display: block; }
.social-card:hover { transform: translateY(-10px); border-color: var(--teal); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .about-split { flex-direction: column; text-align: center; }
    .menu-toggle { display: block; color: white; }
    .main-nav { display: none; position: absolute; top: 70px; left: 0; width: 100%; background: var(--glass); flex-direction: column; padding: 20px; }
    .main-nav.active { display: flex; }
    .carousel-box { width: 95%; }
}

footer { text-align: center; padding: 40px; opacity: 0.3; }