/* =========================================
   YÖRE FM
   SATILIK WEB SİTESİ
   Corporate Landing Page
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    font-family: "Inter", Arial, sans-serif;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(51, 117, 0, 0.15),
            transparent 35%
        ),
        #050605;

    color: #ffffff;

    overflow-x: hidden;
}


/* =========================================
   BACKGROUND
========================================= */

.page {
    position: relative;

    min-height: 100vh;

    display: flex;
    flex-direction: column;

    padding: 30px 5vw;

    overflow: hidden;
}


.background-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;

    opacity: 0.12;
}


.glow-left {
    background: #4a9400;

    left: -300px;
    top: 20%;
}


.glow-right {
    background: #6dbb19;

    right: -300px;
    bottom: 10%;
}


/* =========================================
   TOP BAR
========================================= */

.top-bar {
    position: relative;
    z-index: 5;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 1350px;

    margin: 0 auto;
}


.top-brand {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #8e968a;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #55a800;

    box-shadow:
        0 0 0 5px rgba(85, 168, 0, 0.08),
        0 0 15px rgba(85, 168, 0, 0.7);

    animation: pulse 2s infinite;
}


.top-label {
    padding: 8px 15px;

    border: 1px solid rgba(98, 150, 42, 0.3);

    border-radius: 100px;

    color: #81bb47;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}


@keyframes pulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(85, 168, 0, 0.35);
    }

    70% {
        box-shadow:
            0 0 0 10px rgba(85, 168, 0, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(85, 168, 0, 0);
    }

}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    z-index: 2;

    flex: 1;

    width: 100%;
    max-width: 1050px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 55px 0 45px;
}


/* =========================================
   LOGO
========================================= */

.logo-wrapper {
    position: relative;

    width: min(560px, 82vw);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 40px;
}


.logo {
    position: relative;
    z-index: 3;

    display: block;

    width: 100%;
    max-width: 560px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 20px 35px rgba(0,0,0,0.5))
        drop-shadow(0 0 25px rgba(55,130,0,0.12));

    animation: logoFloat 5s ease-in-out infinite;
}


@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


/* =========================================
   RADIO WAVES
========================================= */

.radio-wave {
    position: absolute;

    border: 1px solid rgba(86, 150, 23, 0.18);

    border-radius: 50%;

    pointer-events: none;

    animation: wavePulse 4s ease-out infinite;
}


.wave-1 {
    width: 110%;
    height: 110%;

    animation-delay: 0s;
}


.wave-2 {
    width: 125%;
    height: 125%;

    animation-delay: 1s;
}


.wave-3 {
    width: 140%;
    height: 140%;

    animation-delay: 2s;
}


@keyframes wavePulse {

    0% {
        opacity: 0;

        transform: scale(0.85);
    }

    30% {
        opacity: 0.45;
    }

    100% {
        opacity: 0;

        transform: scale(1.08);
    }

}


/* =========================================
   CONTENT
========================================= */

.content {
    width: 100%;
    max-width: 850px;
}


.eyebrow {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: #76ae3a;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 4px;
}


.eyebrow::before,
.eyebrow::after {
    content: "";

    width: 28px;
    height: 1px;

    background: #477b1e;
}


h1 {
    color: #ffffff;

    font-size: clamp(34px, 5vw, 62px);

    line-height: 1.05;

    font-weight: 400;

    letter-spacing: -2px;
}


h1 span {
    color: #83b84d;

    font-weight: 800;
}


h1 strong {
    font-weight: 700;

    color: #ffffff;
}


.divider {
    width: 50px;
    height: 3px;

    margin: 28px auto;

    border-radius: 10px;

    background: #4e8d12;
}


.description {
    max-width: 650px;

    margin: 0 auto;

    color: #c2c7bf;

    font-size: 16px;

    line-height: 1.8;
}


.description strong {
    color: #ffffff;
}


.sub-description {
    margin-top: 7px;

    color: #70786f;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   CONTACT CARD
========================================= */

.contact-card {
    width: 100%;
    max-width: 680px;

    margin: 35px auto 0;

    padding: 19px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    text-align: left;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.018)
        );

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 18px;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.25);
}


.contact-label {
    display: block;

    margin-bottom: 5px;

    color: #659c31;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}


.contact-info h2 {
    color: #ffffff;

    font-size: 17px;

    font-weight: 700;
}


.contact-info p {
    margin-top: 3px;

    color: #777f76;

    font-size: 12px;
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.whatsapp-button {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 13px 19px;

    color: #ffffff;

    background: #347900;

    border: 1px solid rgba(125, 190, 69, 0.3);

    border-radius: 11px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.whatsapp-button:hover {
    transform: translateY(-3px);

    background: #428f08;

    box-shadow:
        0 12px 30px rgba(55, 130, 0, 0.3);
}


.whatsapp-button small {
    display: block;

    margin-bottom: 2px;

    color: rgba(255,255,255,0.65);

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.whatsapp-button span:last-child {
    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;
}


.whatsapp-icon {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.whatsapp-icon svg {
    width: 23px;
    height: 23px;

    fill: #ffffff;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1350px;

    margin: 0 auto;

    padding-top: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-top: 1px solid rgba(255,255,255,0.06);

    color: #535a51;

    font-size: 10px;

    letter-spacing: 0.4px;
}


.footer-domain {
    color: #697265;

    font-weight: 700;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .page {
        padding:
            22px 20px
            25px;
    }


    .hero {
        padding:
            45px 0
            35px;
    }


    .logo-wrapper {
        width: min(500px, 92vw);

        margin-bottom: 32px;
    }


    h1 {
        letter-spacing: -1.2px;
    }


    .contact-card {
        flex-direction: column;

        align-items: stretch;

        text-align: center;

        padding: 23px;
    }


    .contact-info {
        text-align: center;
    }


    .whatsapp-button {
        justify-content: center;
    }


    .footer {
        flex-direction: column;

        gap: 9px;

        text-align: center;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .top-brand {
        font-size: 8px;

        letter-spacing: 1.3px;
    }


    .top-label {
        padding: 6px 10px;

        font-size: 8px;

        letter-spacing: 1px;
    }


    .hero {
        padding-top: 40px;
    }


    .logo-wrapper {
        width: 100%;

        margin-bottom: 28px;
    }


    h1 {
        font-size: 32px;

        line-height: 1.08;
    }


    .eyebrow {
        font-size: 9px;

        letter-spacing: 2.5px;
    }


    .eyebrow::before,
    .eyebrow::after {
        width: 18px;
    }


    .description {
        font-size: 14px;

        line-height: 1.7;
    }


    .sub-description {
        font-size: 11px;
    }


    .contact-card {
        margin-top: 28px;

        border-radius: 15px;
    }


    .whatsapp-button {
        width: 100%;
    }


    .footer {
        font-size: 9px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }

}