:root {
    --primary-orange: #EF944D;
    --felt-red: #BD453E;
    --bg-light: #fffaf5;
    --text-dark: #333;
    --pure-white: #FFFFFF;
}

/* --- Genel Sıfırlama --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Container Sistemi (Tüm Düzeni Kurtaran Yapı) --- */
.container, .header-container, .hero-container {
    max-width: 1200px; /* İçeriğin yayılacağı maksimum genişlik */
    margin: 0 auto;    /* Sayfada ortalar */
    padding: 0 20px;   /* Kenarlardan boşluk bırakır */
    width: 100%;
}

/* --- Header & Navigation --- */
header {
    background-color: var(--primary-orange);
    height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex-shrink: 0;
}

.nav-logo {
    height: 40px; /* Logonun boyutunu buradan sabitleyebilirsin */
    width: auto;
    object-fit: contain;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--felt-red);
    font-weight: 700;
    margin-left: 20px;
    font-size: 0.9rem;
}

.cta-nav {
    background: var(--felt-red);
    color: white !important;
    padding: 8px 16px;
    border-radius: 5px;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--primary-orange);
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 60px 0;
}

.felt-title {
    font-family: 'Archivo Black', sans-serif;
    /* Başlık devasa olmayacak, ekran genişliğine göre (vw) ölçeklenecek */
    font-size: clamp(2.5rem, 10vw, 6.5rem); 
    color: var(--felt-red);
    line-height: 0.85;
    transform: rotate(-3deg);
    -webkit-text-stroke: 2px var(--pure-white);
    margin-bottom: 20px;
    display: block;
}

.hero p {
    color: var(--felt-red);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.main-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--felt-red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

/* --- Bölümler --- */


/* Başlık Tasarımı */
section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto; /* Bölümleri sayfada ortalar */
}

.services {
    padding: 100px 5%;
    text-align: center;
}

.services h2 {
    font-family: 'Archivo Black', sans-serif;
    color: var(--primary-orange);
    margin-bottom: 50px;
    font-size: 3rem;
}

.card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background-color: #fffaf5;
    border: 3px solid var(--primary-orange);
    padding: 30px;
    width: 300px;
    border-radius: 20px;
    transition: 0.3s;
}

.card:hover {
    background-color: var(--primary-orange);
    color: white;
}
/* --- İletişim Formu --- */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit-btn {
    background: var(--felt-red);
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
}

.status-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-orange); /* Senin meşhur turuncun */
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2000;
    
    /* Başlangıçta gizli ve aşağıda */
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease; /* Solma ve yükselme efekti */
}

/* Popup Aktif Olduğunda */
.status-popup.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer --- */
footer {
    background: var(--felt-red);
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* --- Mobil Uyumluluk --- */
@media (max-width: 768px) {
    nav ul { display: none; }
    header { height: 70px; }
    .felt-title { font-size: 3rem; }
}