@charset "UTF-8";
/* CSS Document */

:root {
    --background: #f7f1e7;
    --background-soft: #fffaf2;
    --card-background: rgba(255, 252, 246, 0.82);

    --green-dark: #344634;
    --green: #66765a;
    --green-light: #aab59d;

    --terracotta: #c96c4c;
    --terracotta-light: #e2a17f;

    --text: #304031;
    --text-soft: #6f796c;

    --border: rgba(72, 88, 66, 0.13);
    --shadow: 0 24px 60px rgba(77, 66, 45, 0.15);

    --radius-large: 34px;
    --radius-medium: 24px;
    --radius-small: 18px;
}

/* Reset */

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

html,
body {
    width: 100%;
    min-height: 100%;
}

html {
    background: var(--background);
}

body {
    min-height: 100svh;
    overflow: hidden;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 255, 255, 0.9),
            transparent 43%
        ),
        linear-gradient(
            135deg,
            var(--background-soft),
            var(--background)
        );
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Sayfa düzeni */

.landing-page {
    position: relative;
    isolation: isolate;

    width: 100%;
    height: 100svh;
    min-height: 620px;

    padding:
        max(28px, env(safe-area-inset-top))
        clamp(28px, 4vw, 76px)
        max(28px, env(safe-area-inset-bottom));

    display: grid;
    grid-template-columns:
        minmax(280px, 0.82fr)
        minmax(380px, 1.3fr)
        minmax(260px, 0.82fr);

    align-items: center;
    gap: clamp(24px, 3vw, 60px);

    overflow: hidden;
}

/* Arka plan dekorları */

.background-decoration {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.decoration-one {
    width: 420px;
    height: 420px;
    top: -210px;
    left: -160px;
    background: rgba(112, 132, 96, 0.13);
}

.decoration-two {
    width: 500px;
    height: 500px;
    right: -260px;
    bottom: -280px;
    background: rgba(201, 108, 76, 0.11);
}

/* Marka alanı */

.brand-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(24px, 4vh, 46px);
    min-width: 0;
}

.brand-header {
    max-width: 420px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    max-width: clamp(180px, 18vw, 290px);
}

.brand-logo img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    object-position: left center;
}

.brand-line {
    width: 126px;
    margin: 22px 0 20px;

    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-line span {
    height: 1px;
    flex: 1;
    background: var(--terracotta-light);
}

.brand-line i {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;

    border-radius: 50%;
    background: var(--terracotta);
}

.brand-description {
    max-width: 390px;
    font-size: clamp(15px, 1.2vw, 19px);
    line-height: 1.65;
    color: var(--text-soft);
}

/* Ortak küçük başlık */

.eyebrow {
    display: block;
    margin-bottom: 5px;

    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: var(--terracotta);
}

/* İletişim kartı */

.contact-card {
    width: 100%;
    max-width: 430px;
    padding: clamp(20px, 2vw, 28px);

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-large);

    background: var(--card-background);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.contact-heading {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 18px;
}

.contact-heading h2,
.order-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.1;
    color: var(--green-dark);
}

.contact-mini-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    color: white;
    background: var(--green);
}

.contact-mini-icon svg {
    width: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-list {
    display: grid;
    gap: 9px;
}

.contact-item {
    min-width: 0;
    padding: 10px;

    display: grid;
    grid-template-columns: 43px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;

    border-radius: 17px;
    transition:
        background-color 220ms ease,
        transform 220ms ease;
}

.contact-item:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.68);
}

.contact-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    color: white;
}

.instagram-icon {
    background: var(--terracotta);
}

.location-icon {
    background: var(--green);
}

.contact-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-text {
    min-width: 0;
}

.contact-text small {
    display: block;
    margin-bottom: 2px;

    font-size: 11px;
    font-weight: 600;
    color: var(--text-soft);
}

.contact-text strong {
    display: block;

    overflow: hidden;
    text-overflow: ellipsis;

    font-size: clamp(12px, 0.95vw, 14px);
    line-height: 1.35;
    font-weight: 600;

    color: var(--green-dark);
}

.contact-arrow {
    font-size: 18px;
    color: var(--terracotta);
}

/* Bowl alanı */

.bowl-section {
    display: grid;
    place-items: center;
    min-width: 0;
}

.bowl-visual {
    position: relative;

    width: min(43vw, 680px);
    aspect-ratio: 1;

    display: grid;
    place-items: center;
}

.bowl-glow {
    position: absolute;
    inset: 14%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 249, 237, 0.7) 48%,
            transparent 72%
        );

    filter: blur(8px);
}

.bowl-image-wrapper {
    position: relative;
    z-index: 3;

    width: 75%;

    animation: bowlFloat 4.8s ease-in-out infinite;
    filter: drop-shadow(0 35px 30px rgba(69, 57, 39, 0.26));
}

.bowl-image {
    width: 100%;
    height: auto;
    object-fit: contain;

    animation: bowlRotate 24s linear infinite;
}

/* Hareketli halkalar */

.orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    inset: 4%;

    border: 1px solid rgba(95, 116, 83, 0.35);
    border-left-color: transparent;
    border-bottom-color: rgba(201, 108, 76, 0.5);

    animation: orbitRotate 18s linear infinite;
}

.orbit-two {
    inset: 11%;

    border: 1px dashed rgba(201, 108, 76, 0.42);
    border-top-color: transparent;
    border-right-color: rgba(95, 116, 83, 0.42);

    animation: orbitRotateReverse 25s linear infinite;
}

.orbit-dot {
    position: absolute;
    border-radius: 50%;
}

.dot-one {
    width: 14px;
    height: 14px;
    top: 12%;
    right: 11%;
    background: var(--terracotta-light);
}

.dot-two {
    width: 9px;
    height: 9px;
    left: 7%;
    bottom: 24%;
    background: var(--green);
}

.dot-three {
    width: 11px;
    height: 11px;
    right: 3%;
    bottom: 30%;
    background: var(--terracotta);
}

/* Yapraklar */

.floating-leaf {
    position: absolute;
    z-index: 2;
    display: block;
    color: var(--green);
}

.floating-leaf svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.leaf-one {
    width: 55px;
    height: 55px;
    top: 8%;
    left: 3%;

    transform: rotate(-15deg);
    animation: leafFloatOne 5s ease-in-out infinite;
}

.leaf-two {
    width: 38px;
    height: 38px;
    right: 2%;
    bottom: 13%;

    color: var(--terracotta);
    transform: rotate(145deg);
    animation: leafFloatTwo 6s ease-in-out infinite;
}

/* Sipariş alanı */

.order-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(20px, 3vh, 30px);
    min-width: 0;
}

.order-heading {
    text-align: left;
}

.order-platforms {
    display: grid;
    gap: 12px;
}

.platform-card {
    position: relative;
    overflow: hidden;

    min-height: 76px;
    padding: 18px 24px;

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

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-small);

    box-shadow: 0 16px 35px rgba(75, 66, 49, 0.13);

    font-size: clamp(20px, 2vw, 29px);
    font-weight: 700;

    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.platform-card::after {
    content: "";

    position: absolute;
    width: 60%;
    height: 80px;
    top: -65px;
    left: -70%;

    transform: rotate(20deg);

    background: rgba(255, 255, 255, 0.24);
    filter: blur(6px);

    transition: left 500ms ease;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(75, 66, 49, 0.19);
}

.platform-card:hover::after {
    left: 120%;
}

.trendyol {
    color: #f36f21;
    background: rgba(255, 255, 255, 0.88);
}

.getir {
    color: #5d3ebc;
    background: #ffd44a;
}

.yemeksepeti {
    color: white;
    background: #d9204f;
}

/* Animasyonlar */

@keyframes bowlFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.012);
    }
}

@keyframes bowlRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes leafFloatOne {
    0%,
    100% {
        transform: translateY(0) rotate(-15deg);
    }

    50% {
        transform: translateY(-12px) rotate(-5deg);
    }
}

@keyframes leafFloatTwo {
    0%,
    100% {
        transform: translateY(0) rotate(145deg);
    }

    50% {
        transform: translateY(9px) rotate(155deg);
    }
}

/* Büyük masaüstü */

@media (min-width: 1500px) {
    .landing-page {
        grid-template-columns:
            minmax(330px, 0.8fr)
            minmax(600px, 1.4fr)
            minmax(320px, 0.8fr);
    }

    .bowl-visual {
        width: min(42vw, 740px);
    }
}

/* Tablet ve küçük dizüstü */

@media (max-width: 1100px) {
    .landing-page {
        grid-template-columns: minmax(260px, 0.85fr) minmax(390px, 1.15fr);
        grid-template-rows: 1fr auto;
        gap: 20px 30px;
    }

    .brand-section {
        grid-column: 1;
        grid-row: 1;
    }

    .bowl-section {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .order-section {
        grid-column: 1;
        grid-row: 2;
    }

    .order-platforms {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .platform-card {
        min-height: 58px;
        padding: 12px 8px;
        font-size: 15px;
    }

    .contact-card {
        max-width: 390px;
    }

    .bowl-visual {
        width: min(54vw, 620px);
    }
}

/* Mobil */

@media (max-width: 720px) {
    body {
        overflow: hidden;
    }

    .landing-page {
        height: 100svh;
        min-height: 560px;

        padding:
            max(14px, env(safe-area-inset-top))
            16px
            max(14px, env(safe-area-inset-bottom));

        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 8px;
    }

    .brand-section {
        width: 100%;
        gap: 8px;
    }

    .brand-header {
        text-align: center;
        max-width: none;
    }

    .brand-logo {
        max-width: min(52vw, 220px);
    }

    .brand-logo img {
        object-position: center;
    }

    .brand-line {
        width: 74px;
        margin: 8px auto;
    }

    .brand-description {
        max-width: 320px;
        margin: 0 auto;

        font-size: clamp(11px, 3.2vw, 14px);
        line-height: 1.4;
    }

    .contact-card {
        order: 2;

        width: 100%;
        max-width: none;
        padding: 10px 12px;

        border-radius: 20px;
    }

    .contact-heading {
        display: none;
    }

    .contact-list {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 6px;
    }

    .contact-item {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 7px;
        padding: 6px;

        border-radius: 13px;
        background: rgba(255, 255, 255, 0.48);
    }

    .contact-item:hover {
        transform: none;
    }

    .contact-icon {
        width: 34px;
        height: 34px;
    }

    .contact-icon svg {
        width: 17px;
        height: 17px;
    }

    .contact-text small {
        font-size: 8px;
    }

    .contact-text strong {
        font-size: clamp(9px, 2.6vw, 11px);
        line-height: 1.2;
    }

    .contact-arrow {
        display: none;
    }

    .bowl-section {
        width: 100%;
        flex: 1;

        display: grid;
        place-items: center;

        min-height: 0;
    }

    .bowl-visual {
        width: min(84vw, 430px);
        max-height: 46svh;
    }

    .bowl-image-wrapper {
        width: 73%;
    }

    .leaf-one {
        width: 34px;
        height: 34px;
    }

    .leaf-two {
        width: 28px;
        height: 28px;
    }

    .order-section {
        width: 100%;
        gap: 8px;
    }

    .order-heading {
        text-align: center;
    }

    .order-heading .eyebrow {
        display: none;
    }

    .order-heading h2 {
        font-size: clamp(17px, 5vw, 23px);
    }

    .order-platforms {
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
    }

    .platform-card {
        min-height: 50px;
        padding: 10px 5px;

        border-radius: 14px;
        font-size: clamp(12px, 3.5vw, 16px);
    }
}

/* Kısa ekranlı telefonlar */

@media (max-width: 720px) and (max-height: 680px) {
    .landing-page {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .brand-description {
        display: none;
    }

    .brand-logo {
        max-width: 155px;
    }

    .brand-line {
        margin: 5px auto;
    }

    .bowl-visual {
        width: min(68vw, 330px);
        max-height: 38svh;
    }

    .contact-card {
        padding: 7px 8px;
    }

    .contact-icon {
        width: 30px;
        height: 30px;
    }

    .platform-card {
        min-height: 42px;
    }
}

/* Hareket azaltma tercihi */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}


@media (max-width: 720px) {

    .bowl-visual {
        width: min(68vw, 350px);
        max-height: 38svh;
    }

    .bowl-image-wrapper {
        width: 68%;
    }
}
