:root {
    --bg: #05060e;
    --bg-alt: #0b0f1a;
    --primary: #00e5ff;
    --secondary: #ff2fa4;
    --highlight: #f5f7fa;
    --text-muted: rgba(245, 247, 250, 0.8);
    --card: rgba(5, 6, 14, 0.75);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--highlight);
    background: radial-gradient(circle at top, rgba(0, 229, 255, 0.22), transparent 45%),
        radial-gradient(circle at 20% 20%, rgba(255, 47, 164, 0.18), transparent 35%),
        var(--bg);
    min-height: 100vh;
    padding: clamp(2rem, 4vw, 4rem) 0;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 79, 216, 0.12), transparent 55%);
    filter: blur(80px);
    z-index: -1;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
}

.language-switcher select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    background: var(--card);
    color: var(--highlight);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300e5ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
}

.language-switcher select:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.language-switcher select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.language-switcher select option {
    background: var(--bg-alt);
    color: var(--highlight);
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .language-switcher {
        top: 1rem;
        right: 1rem;
    }
    
    .language-switcher select {
        font-size: 0.85rem;
        padding: 0.4rem 1.5rem 0.4rem 0.8rem;
    }
}

.site-shell {
    width: min(1400px, 96%);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem) 3rem;
}
.sushant {
    margin-bottom: 60px ;
}

/* .main-layout {
    display: flex;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: flex-start;
    min-height: 85vh;
}

.left-column {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3rem;
} */

.divider {
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent,
        rgba(0, 229, 255, 0.3) 20%,
        rgba(255, 47, 164, 0.3) 80%,
        transparent
    );
    flex-shrink: 0;
}

/* .right-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.hero {
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: -3rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08), transparent 65%);
    filter: blur(20px);
    z-index: -1;
}

.identity {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.logo-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.4), rgba(255, 47, 164, 0.35));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    display: grid;
    place-items: center;
}

.logo-wrap img {
    width: 70%;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

h1 {
    margin: 0;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.media-stack {
    display: grid;
    gap: 2rem;
    width: 100%;
    max-width: 550px;
}

.video-stack {
    display: grid;
    gap: 2rem;
    width: auto;
    max-width: 550px;
}

.photo-frame {
    border-radius: 1.75rem;
    padding: 0.6rem;
    background: linear-gradient(140deg, rgba(0, 229, 255, 0.35), rgba(255, 47, 164, 0.35));
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.65);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.photo-frame img {
    width: 100%;
    display: block;
    border-radius: 1.3rem;
}

.photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.25), transparent 45%);
    opacity: 0.35;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.photo-frame:hover::after {
    opacity: 0.65;
}

video {
    width: 100%;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 6, 14, 0.7);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

.links {
    margin-top: 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.link-card {
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid rgba(0, 229, 255, 0.25);
    padding: 1.1rem 1.3rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 47, 164, 0.6);
    box-shadow: 0 18px 35px rgba(255, 79, 216, 0.25);
}

.link-card .label {
    font-size: 0.9rem;
    color: var(--primary);
}

.link-card .value {
    font-size: 1.05rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .main-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .left-column {
        flex: 1;
        width: 100%;
    }

    .divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, 
            transparent,
            rgba(0, 229, 255, 0.3) 20%,
            rgba(255, 47, 164, 0.3) 80%,
            transparent
        );
    }

    .right-column {
        width: 100%;
    }

    .identity {
        align-items: center;
        text-align: center;
    }

    .media-stack {
        max-width: 100%;
    }
    .video-stack {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1.5rem 0;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .left-column {
        gap: 2rem;
    }
    .photo-frame {
        margin-top: auto;
    order: -1 !important;} 
    
    .links {
        margin-top: auto;
    }    
}
@media (max-width: 480px) {
  
  .right-column {
    order: -1 !important; /* Moves right column (image) to top */
  }
  
  .photo-frame {
    margin-bottom: 20px !important; /* Adds space below image */
  }
}

/* Desktop: text on left, photo and video together on right */
.main-layout {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
  align-items: start !important;
}

.left-column {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.right-column {
  grid-column: 2 !important;
  grid-row: 1 !important;
  margin-left: 5rem;
}

.video-stack {
  grid-column: 2 !important;
  /* grid-row: 0 !important; */
  margin-top: -50px !important; /* Space between photo and video */
  margin-left: 5rem;
}

/* Mobile: photo first, then text, then video */
@media (max-width: 1024px) {
  .main-layout {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .right-column {
    order: 1 !important;
    margin-bottom: 20px !important;
    margin-left: auto;
  }
  
  .left-column {
    order: 2 !important;
    margin-bottom: 20px !important;
  }
  
  .video-stack {
    order: 3 !important;
    margin-top: 0 !important;
    margin-left: auto;
  }
}

/* Footer Styles */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent,
        rgba(0, 229, 255, 0.3) 20%,
        rgba(255, 47, 164, 0.3) 80%,
        transparent
    );
    margin: 3rem 0 2rem;
}

.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer p {
    margin: 0.3rem 0;
    line-height: 1.6;
}