/* =============================================
   V2 - MINIMALIST BLACK & WHITE DESIGN
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray: #333333;
    --light-gray: #666666;
    --green: #4A7C2C;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--gray);
    backdrop-filter: blur(10px);
}

.lang-switcher a {
    color: var(--light-gray);
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.lang-switcher a:hover {
    color: var(--white);
}

.lang-switcher .lang-active {
    color: var(--green);
    border-bottom: 2px solid var(--green);
}

@media (max-width: 768px) {
    .lang-switcher {
        top: 15px;
        right: 15px;
        padding: 0.35rem 0.5rem;
        gap: 0.3rem;
    }

    .lang-switcher a {
        padding: 0.2rem 0.5rem;
        font-size: 0.75rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/hero-soldier-civilian.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.scroll-indicator {
    display: inline-block;
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    animation: bounce 2s infinite;
    transition: var(--transition);
}

.scroll-indicator:hover {
    color: var(--green);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* =============================================
   SECTION TITLES
   ============================================= */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 4rem;
}

/* =============================================
   STORY SECTION
   ============================================= */
.story {
    padding: 8rem 0;
    background-color: var(--black);
}

.story-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transform: scale(1.03);
}

.story-content {
    max-width: 600px;
}

.story-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #CCCCCC;
}

.story-highlights {
    list-style: none;
    margin-top: 2rem;
}

.story-highlights li {
    font-size: 1rem;
    font-weight: 400;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray);
    color: var(--white);
}

.story-highlights li:before {
    content: "→ ";
    color: var(--green);
    margin-right: 0.5rem;
}

/* =============================================
   CONNECT SECTION (Social Media)
   ============================================= */
.connect {
    padding: 8rem 0;
    background-color: var(--black);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    background-color: var(--black);
    border: 1px solid var(--gray);
    padding: 2.5rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(74, 124, 44, 0.3);
}

.social-icon {
    width: 60px;
    height: 60px;
    color: var(--white);
    transition: var(--transition);
}

.social-card:hover .social-icon {
    color: var(--green);
}

.social-name {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.social-count {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--light-gray);
}

/* =============================================
   INTERVIEWS SECTION
   ============================================= */
.interviews {
    padding: 8rem 0;
    background-color: var(--black);
}

.interview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.interview-card {
    background-color: var(--black);
    border: 1px solid var(--gray);
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    overflow: hidden;
}

.interview-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
}

.interview-logo {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--gray);
    letter-spacing: 0.1em;
}

.interview-thumbnail {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--black); /* Hide white borders from cropped images */
}

.interview-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: var(--transition);
}

/* Custom positioning for each interview image */
.interview-thumbnail img[src*="frontline-selfie"] {
    object-position: center 20%; /* Helmet photo - show lower */
}

.interview-thumbnail img[src*="soldier-gear"] {
    object-position: center 15%; /* Show face properly, less aggressive crop */
}

.interview-thumbnail img[src*="portrait-mirror"] {
    object-position: center top; /* Mirror portrait - show from top */
}

.interview-thumbnail img[src*="portrait-casual-2"] {
    object-position: center 30%; /* Green background - show face properly */
}

.interview-thumbnail img[src*="portrait-evening"] {
    object-position: center 10%; /* Show face from near-top, not absolute top */
}

.interview-thumbnail img[src*="portrait-hat-bw"] {
    transform: scale(1.15); /* Zoom in more to crop white borders */
    object-position: center center;
}

.interview-card:hover .interview-thumbnail img {
    transform: scale(1.06);
}

.interview-title {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.5rem 1.5rem 0.5rem;
}

.interview-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--light-gray);
    padding: 0 1.5rem 1rem;
    line-height: 1.6;
}

.interview-link {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray);
    transition: var(--transition);
}

.interview-card:hover .interview-link {
    color: var(--green);
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery {
    padding: 8rem 0;
    background-color: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.gallery-large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.03);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    padding: 8rem 0;
    background-color: var(--black);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--black);
    border: 1px solid var(--gray);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--green);
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background-color: var(--green);
    color: var(--white);
    border: none;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #5A8C3C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 44, 0.4);
}

.contact-direct {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
}

.contact-direct p {
    font-size: 1rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.email-link {
    font-size: 1.25rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.email-link:hover {
    color: var(--green);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 4rem 0 2rem;
    background-color: var(--black);
    border-top: 1px solid var(--gray);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--green);
}

.footer-text {
    text-align: center;
    color: var(--light-gray);
    font-size: 0.875rem;
}

.footer-text p {
    margin-bottom: 0.5rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-image img {
        height: 400px;
    }

    .story-content .section-title {
        text-align: center;
    }

    .gallery-large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-image {
        background-image: url('../assets/images/soldier-gear.jpg');
        background-position: center center;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .story,
    .connect,
    .interviews,
    .gallery,
    .contact {
        padding: 4rem 0;
    }

    .story-image img {
        height: 350px;
    }

    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .interview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item,
    .gallery-large {
        aspect-ratio: 4/5;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
        letter-spacing: 0.05em;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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