* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #302925;
    background: #f7f2ed;
}


/* HEADER */

header {
    height: 80px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #f7f2ed;

    position: sticky;
    top: 0;
    z-index: 1000;

    border-bottom: 1px solid #e6ddd6;
}

.logo {
    font-size: 21px;
    font-weight: bold;
    letter-spacing: 5px;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #302925;
    font-size: 14px;
}

.btn {
    background: #302925;
    color: white;
    padding: 13px 23px;
    border-radius: 3px;
}


/* HERO */

.hero {
    min-height: 720px;

    display: flex;
    align-items: center;

    padding: 80px 10%;

    background:
        linear-gradient(
            90deg,
            rgba(35, 28, 24, .85),
            rgba(35, 28, 24, .35)
        ),
        url("https://images.unsplash.com/photo-1560750588-73207b1ef5b8?auto=format&fit=crop&w=1800&q=80");

    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 650px;
    color: white;
}

.small-title {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(60px, 8vw, 105px);
    line-height: .95;
    font-weight: normal;
}

.hero h1 span,
.about h2 span,
.section-title h2 span,
.appointment h2 span {
    color: #c9a88f;
}

.hero p:not(.small-title) {
    margin: 30px 0;
    max-width: 500px;
    font-size: 17px;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;

    background: #fff;
    color: #302925;

    padding: 17px 32px;

    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}


/* ABOUT */

.about {
    padding: 130px 10%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.about h2,
.section-title h2,
.appointment h2 {
    font-family: Georgia, serif;
    font-size: 65px;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 35px;
}

.about-text > p:not(.small-title) {
    line-height: 1.9;
    margin-bottom: 18px;
    color: #746860;
    max-width: 550px;
}

.about-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    background: #ebe1d9;

    padding: 60px 30px;
}

.about-box div {
    text-align: center;
}

.about-box strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 45px;
    font-weight: normal;
}

.about-box span {
    display: block;
    margin-top: 10px;
    color: #766a62;
    font-size: 13px;
}


/* SERVICES */

.services {
    padding: 120px 7%;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.service {
    border: 1px solid #e5ddd7;

    padding: 35px;

    min-height: 200px;

    transition: .3s;
}

.service:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.service h3 {
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: normal;
}

.service p {
    color: #81756d;
    line-height: 1.6;
    margin: 18px 0;
    font-size: 14px;
}

.service strong {
    color: #8d6d59;
}


/* APPOINTMENT */

.appointment {
    min-height: 600px;

    padding: 100px 10%;

    display: flex;
    align-items: center;

    color: white;

    background:
        linear-gradient(
            rgba(47, 38, 33, .85),
            rgba(47, 38, 33, .85)
        ),
        url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1800&q=80");

    background-size: cover;
    background-position: center;
}

.appointment h2 {
    margin-bottom: 25px;
}

.appointment > div {
    max-width: 600px;
}

.appointment p:not(.small-title) {
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ddd;
}

.appointment .hero-btn {
    background: #c9a88f;
}


/* CONTACT */

.contact {
    padding: 120px 10%;
    text-align: center;
}

.contact h2 {
    font-family: Georgia, serif;
    font-size: 65px;
    font-weight: normal;
    margin-bottom: 70px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 40px;
}

.contact-grid div {
    padding: 30px;
    border-top: 1px solid #d9cec5;
}

.contact-grid span {
    font-size: 11px;
    letter-spacing: 3px;
    color: #967763;
}

.contact-grid p {
    margin-top: 18px;
    line-height: 1.7;
}


/* FOOTER */

footer {
    background: #302925;
    color: white;

    padding: 35px 7%;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    color: #bdb4ae;
    font-size: 13px;
}


/* MOBİL */

@media (max-width: 900px) {

    header {
        padding: 0 5%;
    }

    nav a:not(.btn) {
        display: none;
    }

    .hero {
        min-height: 600px;
        padding: 60px 7%;
    }

    .about {
        grid-template-columns: 1fr;
        padding: 90px 7%;
        gap: 50px;
    }

    .about h2,
    .section-title h2,
    .appointment h2,
    .contact h2 {
        font-size: 48px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 20px;
    }
}/* =========================
   WHATSAPP SABİT BUTON
========================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 20px;
    border-radius: 50px;

    background: #25D366;
    color: #fff;

    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);

    transition: all 0.3s ease;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255,255,255,0.18);

    font-size: 20px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
}

/* MOBİL */
@media (max-width: 600px) {

    .whatsapp-float {
        right: 16px;
        bottom: 16px;

        width: 52px;
        height: 52px;
        padding: 0;

        justify-content: center;
        border-radius: 50%;
    }

    .whatsapp-icon {
        width: auto;
        height: auto;
        background: transparent;
        font-size: 25px;
    }

    .whatsapp-text {
        display: none;
    }
}