:root {
    --bg-dark: #0F172A;
    --bg-card: #1E293B;
    --text-light: #F1F5F9;
    --accent-gold: #D4AF37;
    --accent-teal: #0EA5E9;
    --text-muted: #94A3B8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

header {
    position: sticky;
    top: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 100;
    padding: 1rem 5%;
    border-bottom: 1px solid #334155;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--accent-gold);
}

.hero {
    text-align: center;
    /*padding: 8rem 5% 6rem;*/
    padding: 6rem 5% 6rem;
    background: linear-gradient(to bottom, #0F172A, #1E293B);
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
}

.hero {
    text-align: center;
    padding: 79px 20px 80px;
}

.hero-image {
    margin: 30px 0;
}

.hero-image img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 12%;
    border: 5px solid rgba(255,255,255,0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .hero-image img {
        width: 240px;
        height: 240px;
    }
}



.btn {
    display: inline-block;
    background: var(--accent-gold);
    color: #0F172A;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn:hover {
    background: #EAB308;
    transform: translateY(-2px);
}

section {
    /*padding: 6rem 5%;*/
    padding: 2.5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    text-align: center;
}

/*narration*/
.narration-section {
    padding: 45px 20px;
    text-align: center;
}

.narration-section .about {
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-muted);
}

/*selected project*/
.card video,
.card iframe {
    width: 100%;
    aspect-ratio: 4/3;
    display: block;
}
/* Layout */
/*.video-layout {*/
/*    display: grid;*/
    grid-template-columns: 1fr 1fr;  /* equal width */
/*    gap: 40px;*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*}*/
.video-layout {
    display: flex;
    justify-content:center;
    gap: 40px;
    max-width: 120px;
    margin: 0 auto;
}

.award-video-card video,
.secondary-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
}


/* Award Video Card */
.award-video-card {
    position: relative;
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
    /*padding: 20px;*/
    transition: transform 0.4s ease;
    max-width: 750px;
    margin: 40px auto;
}

.award-video-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    border-radius: 16px;
    overflow: hidden;
}

.award-video-wrapper video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border-radius: 16px;
}

.award-video-card:hover {
    transform: translateY(-6px);
}

.award-video-card video {
    width: 100%;
    border-radius: 12px;
}

/* Badge */
.award-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: gold;
    color: #000;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
}

/* Secondary video */
.secondary-video iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 992px) {
    .video-layout {
        grid-template-columns: 1fr;
    }
}


/*gal-video*/
/* Gallery Video Card - Portrait Style */
.gallery {
    padding: 38px 20px;
    text-align: center;
}

.gallery h2 {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
/* Tablet */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.gal-video iframe,
.gal-video video {
    width: 100%;
    aspect-ratio: 4 / 3;   /* taller than 16:9 */
    border-radius: 16px;
}


.showcase {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin: 3rem auto;
    max-width: 900px;
}

.audio-player {
    background: #334155;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.audio-player{
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

#showcase p{
    text-align: center;
}

/* Placeholder for audio — replace with real embed */
/*.audio-player::before {*/
/*    content: "1-Minute Voice Showcase Reel (Embed SoundCloud / HTML5 player here)";*/
/*    color: var(--text-muted);*/
/*    font-style: italic;*/
/*}*/

.contributions {
    padding: 48px 20px;
    text-align: center; /* Centers the title */
}

.contributions h2 {
    margin-bottom: 3rem;
}

.contributions .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Tablet */
@media (max-width: 1024px) {
    .contributions .cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .contributions .cards-wrapper {
        grid-template-columns: 1fr;
    }
}
.card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #334155;
}

.card-content {
    padding: 1.5rem;
}

.card h3 {
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.card a {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 500;
}
.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 700px;   /* smaller container */
    margin: 0 auto;
}

.voice-item img {
    width: 100%;
    aspect-ratio: 4 / 5;   /* portrait ratio */
    max-height: 420px;     /* limit height */
    object-fit: cover;
    border-radius: 16px;
}

.voice-item img:hover {
    transform: scale(1.05);
}
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.voice-item img {
    cursor: pointer;
}

@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD */
.work-card {
    background: #111;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.work-card:hover {
    transform: translateY(-8px);
}

.work-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.work-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.voice-description{
    text-align:center;
}

.work-content h3 {
    margin-bottom: 10px;
}

.work-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.work-content a {
    text-decoration: none;
    font-weight: 600;
    color: var(--accent-teal);
}


.recognition {
    text-align: center;
}

.award-highlight {
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin: 2rem 0;
}

.recognition {
    text-align: center;
    padding: 29px 20px;
}
.recognition iframe{
    width: 100%;
    max-width: 675px;
    height: 356px;
    border-radius: 12px;
}

.award-gallery {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.award-gallery img {
    width: 100%;
    max-width: 420px;
    height: 356px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease;
}

.award-gallery img:hover {
    transform: scale(1.03);
}

/* Mobile */
@media (max-width: 768px) {
    .award-gallery {
        gap: 20px;
    }

    .award-gallery img {
        height: auto;
        max-width: 90%;
    }
    .gallery {
        display: block;
    }
}

#writings {
    padding: 29px 20px;
    text-align: center;
}

.writing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.writing-card {
    background: var(--bg-card);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.writing-card:hover {
    transform: translateY(-8px);
}

.writing-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.writing-content {
    padding: 1.5rem;
}

.writing-content h3 {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.writing-content span {
    color: var(--accent-teal);
    font-size: 0.9rem;
}
@media (max-width: 1024px) {
    .writing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .writing-cards {
        grid-template-columns: 1fr;
    }
}

#contact {
    text-align: center;
    padding: 80px 20px;
}

.sub-info {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--accent-gold);
    font-size: 22px;
    transition: 0.3s ease;
    text-decoration: none;
}

.contact-icons a:hover {
    background: var(--accent-gold);
    color: #000;
    transform: translateY(-6px);
}

.contact-note {
    color: var(--text-muted);
}

footer {
    text-align: center;
    padding: 3rem 5%;
    background: #0A0F1A;
    color: var(--text-muted);
    border-top: 1px solid #334155;
}

.navbar .logo{
    font-size: 2.2rem;
    /*margin-bottom: 1rem;*/
    color: var(--accent-gold);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 70px;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    position: absolute;
    left: 0%;
    padding: 0 16px;
    /*height:70px; */
    align-items: center;
}

.about-video{
    display:flex;
    justify-content: center;
    
}

/* Mobile */
@media (max-width:768px) {

    header {
        padding-left: 0;
        padding-right: 0;
    }

    .navbar {
        padding-left: 0;
        padding-right: 0;
    }

    nav ul {
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
    }

    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: #0F172A;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        border-top: 1px solid #334155;
    }

    nav ul li {
        padding-left: 25px;
        margin: 8px 0;
    }

    nav ul.show {
        display: flex;
    }
}

.hero-award {
    font-size: 1.1rem;
}

/* Desktop only single line */
@media (min-width: 992px) {
    .hero-award {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 5% 4rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        display: none;
    }

    nav ul {
        gap: 1.5rem;
        font-size: 0.95rem;
    }
    .movileadjust{
        margin:0 !important;
    }
    section {
        padding: 2rem 5%;
        max-width: 1200px;
        margin: 0 auto;
    }
    
}

@media (min-width: 769px){
    .navbar .logo {
        display:none;
}

