* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c2c2c;
    background-color: #f9f8f6;
    line-height: 1.7;
}

/* ==============================
   HERO / ENTRY PAGE
   ============================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;    /* desktop: centered */
    z-index: 0;
}

/* ==============================
    SOME CHANGES TO THE HERO IMAGE 
    SO THAT THE IMAGE IS SHOWN IN MOBILE APPLICATION TOO
   HERO IMAGE — Tablet
   ============================== */
@media (max-width: 900px) {
    .hero-image {
        object-position: 65% top;   /* shift to show more of the right side */
    }
}

/* ==============================
   HERO IMAGE — Mobile
   ============================== */
@media (max-width: 700px) {
    .hero-image {
        object-position: 60% top;   /* show garden + doves */
    }

    /* reduce overlay so image is more visible */
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(235, 228, 216, 0.2) 0%,
            rgba(235, 228, 216, 0.4) 50%,
            rgba(235, 228, 216, 0.8) 100%
        );
    }
}

/* ==============================
   HERO IMAGE — Very Small Phones
   ============================== */
@media (max-width: 380px) {
    .hero-image {
        object-position: 55% top;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(235, 228, 216, 0.3) 0%,
        rgba(235, 228, 216, 0.5) 50%,
        rgba(235, 228, 216, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    margin-top: 100px;
}

.hero-content .hero-logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: #4a3f2f;
    margin-bottom: 10px;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
}

.hero-content .hero-subtitle {
    font-size: 1.3rem;
    color: #5c5040;
    font-style: italic;
    font-weight: 600;          /* ← add this */
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.hero-content .hero-location {
    font-size: 1rem;
    color: #6b6050;
    font-weight: 600;          /* ← add this */
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.hero-content .hero-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #506a7e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(80, 106, 126, 0.3);
}

.hero-content .hero-btn:hover {
    background-color: #3e5567;
    transform: translateY(-2px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    z-index: 2;
    text-align: center;
    animation: bounce 2s infinite;
}

.hero-scroll-hint span {
    font-size: 2rem;
    color: #4a3f2f;
    opacity: 0.5;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ==============================
   EMERGENCY BUTTON (Hero)
   ============================== */
.emergency-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background-color: #8b2d2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(139, 45, 45, 0.4);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    animation: pulse-glow 2.5s infinite;
}

.emergency-btn:hover {
    background-color: #a33a3a;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(139, 45, 45, 0.55);
}

.emergency-icon {
    font-size: 1.6rem;
}

.emergency-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.3;
    text-transform: uppercase;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 18px rgba(139, 45, 45, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(139, 45, 45, 0.7), 0 0 15px rgba(200, 60, 60, 0.3);
    }
}

/* ==============================
   NAV
   ============================== */
nav {
    background-color: #d6ccba;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #c4b89e;
}

/* Main links row */
.nav-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding: 12px 10px;
}

/* Pill buttons row */
.nav-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 0 10px 10px 10px;
}

nav a {
    color: #4a3f2f;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    white-space: nowrap;
}

nav a:hover {
    color: #506a7e;
}

nav .nav-collab {
    color: #506a7e;
    font-weight: 700;
    border: 2px solid #506a7e;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: background-color 0.3s, color 0.3s;
}

nav .nav-collab:hover {
    background-color: #506a7e;
    color: #ffffff;
}

nav .nav-emergency {
    color: #8b2d2d;
    font-weight: 700;
    border: 2px solid #8b2d2d;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: background-color 0.3s, color 0.3s;
}

nav .nav-emergency:hover {
    background-color: #8b2d2d;
    color: #ffffff;
}

/* ==============================
   SECTIONS
   ============================== */
section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

section h2 {
    font-size: 1.6rem;
    color: #4a3f2f;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    border-left: 4px solid #b5a48a;
    padding-left: 15px;
}

section .divider {
    width: 60px;
    height: 2px;
    background-color: #b5a48a;
    margin: 15px 0 30px 0;
}

/* ==============================
   ABOUT
   ============================== */
#hakkimizda p {
    font-size: 1.05rem;
    color: #4a4a4a;
    max-width: 700px;
}

/* ==============================
   WELCOME SECTION
   ============================== */
.welcome-section {
    background-color: #f0ebe3;
    text-align: center;
    padding: 70px 20px;
    max-width: 100%;
    border-top: 1px solid #e0d9cf;
    border-bottom: 1px solid #e0d9cf;
}

.welcome-section h2 {
    border-left: none;
    padding-left: 0;
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.welcome-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.divider.center {
    margin: 15px auto 35px auto;
}

.welcome-card {
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e4dfd8;
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.welcome-card p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.9;
    text-align: left;
}

.welcome-separator {
    width: 40px;
    height: 2px;
    background-color: #b5a48a;
    margin: 25px auto;
}

/* ==============================
   CORE VALUES
   ============================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.value-card {
    background: #ffffff;
    border: 1px solid #e4dfd8;
    border-top: 3px solid #b5a48a;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 1rem;
    color: #4a3f2f;
    margin-bottom: 10px;
    font-weight: 600;
}

.value-card p {
    font-size: 0.9rem;
    color: #5a5a5a;
}

.values-closing {
    text-align: center;
    font-size: 0.95rem;
    color: #6b6050;
    font-style: italic;
    margin-top: 10px;
}

/* ==============================
   PRODUCTS
   ============================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e4dfd8;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.product-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.1rem;
    color: #4a3f2f;
    margin-bottom: 10px;
    font-weight: 500;
}

.product-card p {
    font-size: 0.9rem;
    color: #6b6b6b;
}

/* ==============================
   SERVICES
   ============================== */
.services-list {
    list-style: none;
}

.services-list li {
    padding: 14px 0;
    border-bottom: 1px solid #e4dfd8;
    font-size: 1rem;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li span.check {
    color: #b5a48a;
    font-size: 1.2rem;
    font-weight: bold;
}

/* ==============================
   CONTACT / LOCATION
   ============================== */
#iletisim {
    background-color: #ffffff;
    border-top: 1px solid #e4dfd8;
    border-bottom: 1px solid #e4dfd8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    font-size: 1.1rem;
    color: #4a3f2f;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-info p {
    color: #4a4a4a;
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info .label {
    font-weight: 600;
    color: #4a3f2f;
    min-width: 70px;
}

.map-placeholder {
    background-color: #eae6e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    border: 1px solid #d6d0c8;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: none;
    border-radius: 8px;
}

/* ==============================
   COLLABORATION LINK (in contact)
   ============================== */
.collab-link-box {
    margin-top: 28px;
    padding: 18px 20px;
    background-color: #f0ebe3;
    border: 1px solid #e0d9cf;
    border-left: 3px solid #506a7e;
    border-radius: 8px;
}

.collab-link-box p {
    font-size: 0.9rem;
    color: #4a3f2f;
    margin-bottom: 8px;
    font-weight: 500;
    display: block;
}

.collab-link {
    display: inline-block;
    font-size: 0.9rem;
    color: #506a7e;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s, padding-left 0.3s;
}

.collab-link:hover {
    color: #3e5567;
    padding-left: 5px;
}

/* ==============================
   HOURS TABLE
   ============================== */
.hours-table {
    width: 100%;
    max-width: 400px;
    border-collapse: collapse;
    margin-top: 10px;
}

.hours-table td {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #4a4a4a;
    border-bottom: 1px solid #eee;
}

.hours-table td:first-child {
    font-weight: 500;
    color: #4a3f2f;
}

.hours-table td:last-child {
    text-align: right;
}

/* ==============================
   BANNER
   ============================== */
.banner {
    background-color: #4a3f2f;
    color: #e0d9cf;
    text-align: center;
    padding: 40px 20px;
}

.banner p {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.banner .phone {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 300;
    margin-top: 10px;
    letter-spacing: 2px;
}

/* ==============================
   FOOTER
   ============================== */
footer {
    background-color: #3a3328;
    color: #8a8070;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.85rem;
}

footer span {
    color: #b5a48a;
}

/* ==============================
   RESPONSIVE — TABLETS
   ============================== */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==============================
   RESPONSIVE — MOBILE
   ============================== */
@media (max-width: 700px) {

    /* --- Hero --- */
    .hero-content {
        margin-top: 60px;
        padding: 20px 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .hero-content .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-content .hero-location {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }

    .hero-content .hero-logo {
        width: 90px;
        height: 90px;
    }

    .hero-content .hero-btn {
        padding: 12px 30px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-scroll-hint {
        bottom: 15px;
    }

    /* --- Emergency Button --- */
    .emergency-btn {
        top: 12px;
        right: 12px;
        padding: 8px 14px;
        gap: 6px;
        border-radius: 10px;
    }

    .emergency-icon {
        font-size: 1.2rem;
    }

    .emergency-text {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    /* --- Nav --- */
    .nav-main {
        gap: 10px;
        padding: 8px 8px 5px 8px;
        flex-wrap: wrap;
    }

    .nav-main a {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .nav-pills {
        padding: 0 8px 7px 8px;
        gap: 8px;
    }

    .nav-collab,
    .nav-emergency {
        font-size: 0.65rem !important;
        padding: 4px 10px !important;
    }

    /* --- Welcome --- */
    .welcome-section {
        padding: 40px 15px;
    }

    .welcome-section h2 {
        font-size: 1.4rem;
    }

    .welcome-card {
        padding: 25px 20px;
    }

    .welcome-card p {
        font-size: 0.95rem;
    }

    .welcome-icon {
        font-size: 2rem;
    }

    /* --- Values --- */
    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-closing {
        font-size: 0.85rem;
    }

    /* --- Products --- */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 22px 18px;
    }

    /* --- Services --- */
    .services-list li {
        font-size: 0.9rem;
        padding: 12px 0;
    }

    /* --- Sections general --- */
    section {
        padding: 40px 15px;
    }

    section h2 {
        font-size: 1.3rem;
    }

    /* --- Contact --- */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        min-height: 220px;
    }

    .map-placeholder iframe {
        min-height: 220px;
    }

    .collab-link-box {
        padding: 14px 16px;
    }

    /* --- Banner --- */
    .banner {
        padding: 30px 15px;
    }

    .banner p {
        font-size: 1rem;
    }

    .banner .phone {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    /* --- Footer --- */
    footer {
        padding: 20px 15px;
        font-size: 0.8rem;
    }
}

/* ==============================
   RESPONSIVE — VERY SMALL PHONES
   ============================== */
@media (max-width: 380px) {

    .hero-content h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .hero-content .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-content .hero-logo {
        width: 75px;
        height: 75px;
    }

    .hero-content {
        margin-top: 40px;
    }

    .emergency-btn {
        padding: 6px 10px;
    }

    .emergency-text {
        font-size: 0.55rem;
    }

    .nav-main a {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .nav-collab,
    .nav-emergency {
        font-size: 0.6rem !important;
        padding: 3px 8px !important;
    }

    .welcome-section h2 {
        font-size: 1.2rem;
    }

    .welcome-card {
        padding: 20px 15px;
    }

    section h2 {
        font-size: 1.15rem;
    }

    .banner .phone {
        font-size: 1.1rem;
    }
}