/* =========================================================
   Root Colors (Theme Variables)
========================================================= */
:root {
    --color-black: #000000;
    --color-dark-gray: #4d4d4d;
    --color-white: #ffffff;
    --border: #6c6c6c;
    --color-medium-gray: #6c6c6c;
}

/* =========================================================
   Font Imports
   → Ensure fonts are placed in /Gotham folder
========================================================= */
@font-face {
    font-family: "Gotham";
    src: url("../Gotham-Black/Gotham-Black.otf") format("truetype");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Gotham";
    src: url("../Gotham-Black/GothamMedium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}


/* =========================================================
   Reset & Global Styles
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gotham", sans-serif;
}

a {
    color: var(--color-black);
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-white);
    line-height: 1.6;
    font-size: 16px;
}

/* Container for layout alignment */
.container {
    max-width: 1200px;
    padding: 0 100px;
    width: 100%;
    margin: 0 auto;
}

/* =========================================================
   Header Styles
========================================================= */
header {
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content-full {
    width: 100%;
    background-color: var(--color-black);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 4px solid var(--border);
}

.header-logo {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================
   Navigation Styles
========================================================= */
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

/* ===============================
   Navigation
================================ */
.nav a {
    position: relative;
    color: var(--color-black);
    font-weight: 700; /* Bold for menu */
    font-size: 26px;
    line-height: 52px;
    padding: 0 16px;
}

/* Divider between navigation links */
.nav a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background-color: var(--color-black);
}

.nav a:last-child::after {
    content: none;
}

/* Adjust scroll position for in-page links */
section {
    scroll-margin-top: 120px;
    padding: 58px 0 0 0;
}

/* ===============================
   About Section
================================ */
.content-wrapper h1 {
    font-size: 32px;
    line-height: 52px;
    color: var(--color-black);
    font-weight: 700; /* Bold for title */
    border-bottom: 2px solid var(--color-black);
}

.about-main p {
    font-size: 28px;
    font-weight: 500; /* Medium for paragraph text */
    line-height: 45px;
    color: var(--color-dark-gray);
    max-width: 900px;
    margin: 52px auto 45px auto;
}

/* Divider line below about text */
.divider {
    width: 320px;
    margin: 0 auto;
    height: 2px;
    background-color: var(--color-dark-gray);
}

/* Contact info styles */
.contact {
    padding-top: 48px;
    text-align: center;
}

.contact a {
    font-size: 28px;
    font-weight: 500; /* Medium for links */
    line-height: 52px;
    text-decoration: underline;
    color: var(--color-dark-gray);
}

/* =========================================================
   Image & Video Grids
========================================================= */
.image-grid,
.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    padding-top: 80px;
    justify-content: center;
}

/* Video preview wrapper */
.video-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

/* Make both image & video fit container */
.video-wrapper img,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* GIF wrapper section */
.gif-wrapper {
    position: relative;
    cursor: default;
    overflow: hidden;
}

.gif-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   UI Image Sizes (Desktop)
========================================================= */
.ui-1 img {
    width: 600px;
    height: 800px;
    object-fit: cover;
}

.ui-2 img {
    width: 895px;
    height: auto;
    object-fit: cover;
}

.ui-3 img {
    width: 850px;
    height: 132px;
    object-fit: cover;
}

.ui-4 img {
    width: 800px;
    height: 1000px;
    object-fit: cover;
}

/* =========================================================
   Ads Image Sizes (Desktop)
========================================================= */
.ads-1 img {
    width: 692px;
    height: 244px;
    object-fit: cover;
}

.ads-2 img {
    width: 755px;
    height: 308px;
    object-fit: cover;
}

.ads-3 img {
    width: 900px;
    height: 100px;
    object-fit: cover;
}

/* =========================================================
   Footer Styles
========================================================= */
.site-footer {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
}

.site-footer p {
    margin: 0;
}

/* =========================================================
   Responsive Breakpoints
   → 992px / 768px / 576px
========================================================= */

/* ---------- Large Tablets / Small Laptops ---------- */
@media (max-width: 992px) {
    .container {
        padding: 0 40px;
    }

    .video-wrapper {
        width: 90% !important;
    }

    .image-grid,
    .video-grid {
        gap: 50px;
        padding-top: 60px;
    }

    .about-main p {
        font-size: 22px;
        line-height: 36px;
        max-width: 750px;
    }

    .nav a {
        font-size: 22px;
        padding: 0 12px;
    }

    /* Scale down all images for medium devices */
    .ui-1 img,
    .ui-2 img,
    .ui-3 img,
    .ui-4 img,
    .ads-1 img,
    .ads-2 img,
    .ads-3 img {
        width: 90%;
        height: auto;
    }
}

/* ---------- Tablets ---------- */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav a {
        font-size: 20px;
        line-height: 40px;
        padding: 0 10px;
    }

    .content-wrapper h1 {
        font-size: 26px;
    }

    .about-main p {
        font-size: 20px;
        line-height: 32px;
        margin: 36px auto 30px;
    }

    .video-wrapper {
        width: 100% !important;
    }

    .image-grid,
    .video-grid {
        gap: 40px;
    }

    .contact a {
        font-size: 22px;
    }

    .ui-1 img,
    .ui-2 img,
    .ui-3 img,
    .ui-4 img,
    .ads-1 img,
    .ads-2 img,
    .ads-3 img {
        width: 100%;
        height: auto;
    }
}

/* ---------- Mobile Devices ---------- */
@media (max-width: 576px) {
    /* Header scaling */
    .header-content-full {
        height: 56px;
    }

    .header-logo img {
        height: 36px;
    }

    .container {
        padding: 0 15px;
    }

    /* Navigation adjustments */
    .nav a {
        font-size: 16px;
        line-height: 28px;
        padding: 0 8px;
    }

    /* Typography scaling */
    .content-wrapper h1 {
        font-size: 22px;
    }

    .about-main p {
        font-size: 18px;
        line-height: 28px;
    }

    .divider {
        width: 200px;
    }

    .contact a {
        font-size: 18px;
        line-height: 30px;
    }

    /* Layout adjustments */
    .image-grid,
    .video-grid {
        gap: 30px;
        padding-top: 40px;
    }

    /* ✅ Apply fixed height (300px) only to videos */
    .video-wrapper,
    .video-wrapper img,
    .video-wrapper video {
        width: 100%;
        height: 300px !important;
        object-fit: cover;
    }

    /* Adjust GIF height proportionally */
    .gif-wrapper {
        height: 233px !important;
    }

    /* Footer size */
    .site-footer {
        font-size: 13px;
        padding: 15px 0;
    }
}
