/* ==========================================================
   YOL KAPTANI
   STYLE.CSS
========================================================== */


/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 74px;
}

body {
    margin: 0;
    min-width: 320px;

    background: #08090a;
    color: #f2f2f2;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}


/* ==========================================================
   HEADER
========================================================== */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;
    height: 74px;

    background:
        radial-gradient(
            circle at top,
            rgba(255, 255, 255, 0.05),
            transparent 65%
        ),
        linear-gradient(
            180deg,
            rgba(24, 24, 24, 0.96) 0%,
            rgba(13, 13, 13, 0.98) 55%,
            rgba(8, 8, 8, 0.99) 100%
        );

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.05),
        inset 0 -1px rgba(255, 255, 255, 0.03),
        0 10px 24px rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    overflow: hidden;
}

.site-header::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.01) 0,
            rgba(255, 255, 255, 0.01) 1px,
            transparent 2px,
            transparent 5px
        );

    opacity: 0.22;

    pointer-events: none;
}

.site-header::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.12),
            transparent
        );

    pointer-events: none;
}


/* ==========================================================
   HEADER CONTAINER
========================================================== */

.header-container {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    padding: 0 6.4%;

    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ==========================================================
   LOGO
========================================================== */

.site-logo {
    color: #e84b2d;

    text-decoration: none;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 36px;
    font-weight: 700;
    font-style: italic;

    line-height: 1;
    letter-spacing: -1px;

    transition: color 0.25s ease;
}

.site-logo:hover {
    color: #ff6646;
}


/* ==========================================================
   NAVIGATION
========================================================== */

.main-navigation {
    display: flex;
    align-items: center;

    gap: clamp(30px, 4vw, 62px);
}

.main-navigation a {
    position: relative;

    color: #ececec;

    text-decoration: none;

    font-size: 16px;
    font-weight: 400;

    transition: color 0.25s ease;
}

.main-navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    margin: auto;

    background: #e84b2d;

    transition: width 0.25s ease;
}

.main-navigation a:hover {
    color: #e84b2d;
}

.main-navigation a:hover::after {
    width: 100%;
}


/* ==========================================================
   PAGE
========================================================== */

main {
    padding-top: 74px;
}


/* ==========================================================
   HERO
========================================================== */

.hero-section {
    position: relative;

    min-height: calc(100vh - 74px);

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 76% 45%,
            rgba(232, 75, 45, 0.045),
            transparent 34%
        ),
        radial-gradient(
            circle at 12% 28%,
            rgba(255, 255, 255, 0.025),
            transparent 28%
        ),
        linear-gradient(
            115deg,
            #08090a 0%,
            #0b0c0d 48%,
            #090a0b 100%
        );

    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.hero-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.009) 0,
            rgba(255, 255, 255, 0.009) 1px,
            transparent 2px,
            transparent 6px
        );

    opacity: 0.22;

    pointer-events: none;
}

.hero-section::after {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    right: -260px;
    bottom: -310px;

    border-radius: 50%;

    background: rgba(232, 75, 45, 0.04);

    filter: blur(80px);

    pointer-events: none;
}


/* ==========================================================
   HERO CONTAINER
========================================================== */

.hero-container {
    position: relative;
    z-index: 2;

    width: 100%;

    padding: 44px 3.7%;

    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;

    gap: 42px;
}


/* ==========================================================
   HERO CONTENT
========================================================== */

.hero-content {
    width: 100%;
    max-width: 560px;
}

.hero-tagline {
    position: relative;

    display: inline-flex;
    align-items: center;

    margin-bottom: 12px;
    padding-left: 32px;

    color: #e84b2d;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 2px;

    text-transform: uppercase;
}

.hero-tagline::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 22px;
    height: 1px;

    background: #e84b2d;

    transform: translateY(-50%);
}

.hero-content h1 {
    margin: 0;

    max-width: 530px;

    color: #d7d7d7;

    font-size: clamp(44px, 4vw, 67px);
    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -1.8px;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.18),
        0 4px 14px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    margin: 14px 0 0;

    max-width: 520px;

    color: #c5c5c5;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.45;
    letter-spacing: 0.05px;
}


/* ==========================================================
   HERO BUTTONS
========================================================== */

.hero-buttons {
    margin-top: 24px;

    display: flex;
    align-items: center;

    gap: 22px;
}

.hero-buttons a {
    min-height: 42px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 0 28px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-primary {
    min-width: 165px;

    color: #ffffff;

    border: 1px solid #ef472c;

    background:
        linear-gradient(
            135deg,
            rgba(239, 71, 44, 0.96),
            rgba(195, 40, 21, 0.96)
        );

    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.18),
        0 7px 20px rgba(210, 49, 26, 0.17);
}

.btn-primary:hover {
    background:
        linear-gradient(
            135deg,
            #ff5a3d,
            #d9321c
        );

    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.2),
        0 9px 22px rgba(210, 49, 26, 0.23);
}

.btn-secondary {
    min-width: 235px;

    color: #ef4c32;

    border: 1px solid #e7442b;

    background: rgba(9, 10, 11, 0.54);
}

.btn-secondary:hover {
    border-color: #ff5a3d;

    background: rgba(232, 75, 45, 0.08);
}


/* ==========================================================
   HERO IMAGE
========================================================== */

.hero-image {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 7;

    margin-left: -42px;

    border: 0;
    border-radius: 0;

    padding: 0;

    background: none;
    box-shadow: none;

    overflow: hidden;
}

.hero-image::before,
.hero-image::after {
    content: none;
    display: none;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border: 0;
    border-radius: 7px;

    filter:
        contrast(1.04)
        saturate(0.92)
        brightness(0.88);

    transform: none;
    transition: none;
}

.hero-image:hover,
.hero-image:hover img {
    transform: none;
}


/* ==========================================================
   EMPTY SECTIONS
========================================================== */

.empty-section {
    min-height: 100vh;
}

.site-footer {
    min-height: 1px;
}


/* ==========================================================
   RESPONSIVE - LARGE TABLET
========================================================== */

@media (max-width: 1180px) {

    .hero-container {
        padding-right: 3.5%;
        padding-left: 3.5%;

        grid-template-columns: 41% 59%;

        gap: 28px;
    }

    .hero-content h1 {
        font-size: clamp(40px, 4.7vw, 58px);
    }

    .hero-image {
        margin-left: -26px;
    }

    .hero-buttons {
        gap: 14px;
    }

    .hero-buttons a {
        padding: 0 22px;
    }

    .btn-secondary {
        min-width: 205px;
    }

}


/* ==========================================================
   RESPONSIVE - TABLET
========================================================== */

@media (max-width: 980px) {

    .header-container {
        padding: 0 30px;
    }

    .main-navigation {
        gap: 24px;
    }

    .main-navigation a {
        font-size: 14px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-container {
        padding: 72px 30px 60px;

        grid-template-columns: 1fr;

        gap: 42px;
    }

    .hero-content {
        max-width: 680px;
    }

    .hero-content h1 {
        max-width: 680px;

        font-size: clamp(44px, 7vw, 64px);
    }

    .hero-content p {
        max-width: 620px;
    }

    .hero-image {
        width: 100%;
        aspect-ratio: 16 / 8;

        margin-left: 0;
    }

}


/* ==========================================================
   RESPONSIVE - MOBILE
========================================================== */

@media (max-width: 760px) {

    html {
        scroll-padding-top: 68px;
    }

    .site-header {
        height: 68px;
    }

    .header-container {
        padding: 0 22px;
    }

    .site-logo {
        font-size: 30px;
    }

    .main-navigation {
        display: none;
    }

    main {
        padding-top: 68px;
    }

    .hero-container {
        padding: 54px 22px 44px;

        gap: 34px;
    }

    .hero-tagline {
        margin-bottom: 14px;
        padding-left: 26px;

        font-size: 11px;
        letter-spacing: 1.45px;
    }

    .hero-tagline::before {
        width: 17px;
    }

    .hero-content h1 {
        font-size: clamp(38px, 12vw, 52px);

        line-height: 1.03;
        letter-spacing: -1.2px;
    }

    .hero-content p {
        margin-top: 16px;

        font-size: 15px;
        line-height: 1.55;
    }

    .hero-buttons {
        margin-top: 24px;

        flex-direction: column;
        align-items: stretch;

        gap: 13px;
    }

    .hero-buttons a {
        width: 100%;
        min-width: 0;
        min-height: 48px;
    }

    .hero-image {
        width: 100%;
        aspect-ratio: 16 / 10;

        margin-left: 0;
    }

    .hero-image img {
        border-radius: 6px;
    }

}


/* ==========================================================
   RESPONSIVE - SMALL MOBILE
========================================================== */

@media (max-width: 440px) {

    .hero-container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .hero-tagline {
        font-size: 10px;
        letter-spacing: 1.05px;
    }

    .hero-content h1 {
        font-size: 39px;
    }

    .hero-image {
        aspect-ratio: 4 / 3;
    }

}