/* WESTIA BUTİK PREMIUM STYLE */
:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #777777;
    --border: #f0f0f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--white); color: var(--black); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }

/* Header - Merkeze Hizalı Lüks Yapı */
.site-header { padding: 25px 0; border-bottom: 1px solid var(--border); background: #fff; position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 60px; width: auto; display: block; }
.menu { flex: 1; }
.left-menu { text-align: left; }
.right-menu { text-align: right; }
.menu a { text-decoration: none; color: var(--black); font-size: 11px; letter-spacing: 2.5px; font-weight: 600; text-transform: uppercase; margin: 0 15px; transition: 0.3s; }
.menu a:hover { opacity: 0.4; }
.trendyol-highlight { border-bottom: 1px solid #000; padding-bottom: 2px; }

/* Hero Section */
.hero { background: var(--black); height: 75vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); }
.hero-subtitle { font-size: 11px; letter-spacing: 6px; opacity: 0.7; margin-bottom: 15px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(38px, 8vw, 90px); font-weight: 400; letter-spacing: 15px; text-transform: uppercase; margin-bottom: 25px; }
.hero-tagline { font-size: 12px; letter-spacing: 4px; opacity: 0.6; margin-bottom: 45px; }
.hero-btn { border: 1px solid #fff; padding: 18px 50px; color: #fff; text-decoration: none; font-size: 11px; letter-spacing: 3px; transition: 0.4s; text-transform: uppercase; }
.hero-btn:hover { background: #fff; color: #000; }

/* Brand Story */
.brand-story { padding: 120px 0; text-align: center; }
.section-title { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 35px; letter-spacing: 2px; font-weight: 400; }
.story-text { max-width: 750px; margin: 0 auto; color: var(--gray); font-weight: 300; font-size: 17px; line-height: 2; }

/* Instagram */
.insta-section { padding-bottom: 120px; }
.insta-header { text-align: center; margin-bottom: 40px; }
.insta-header h3 { font-size: 13px; letter-spacing: 5px; opacity: 0.8; }
.divider { width: 40px; height: 1px; background: #000; margin: 20px auto; }

/* Footer */
.footer-area { background: #000; color: #fff; padding: 100px 0 50px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 60px; margin-bottom: 80px; }
.footer-col h4 { font-size: 11px; letter-spacing: 3px; margin-bottom: 25px; font-weight: 600; opacity: 0.9; }
.footer-col p { font-size: 13px; opacity: 0.6; line-height: 2.2; }
.footer-bottom { text-align: center; opacity: 0.3; font-size: 10px; letter-spacing: 2px; border-top: 1px solid #1a1a1a; padding-top: 40px; }

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .menu { display: none; }
    .hero { height: 60vh; }
    .hero h1 { font-size: 32px; letter-spacing: 8px; }
    .brand-story { padding: 80px 0; }
}
/* --- CONTACT PAGE STYLES --- */

/* Genel Sayfa Başlık Alanı */
.page-hero {
    background-color: var(--black); /* Eğer görsel yoksa siyah arka plan */
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 80px;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4); /* Arka plan görseli varsa hafif karartma */
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 5vw, 60px);
    letter-spacing: 8px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-hero-content p {
    font-size: 14px;
    letter-spacing: 3px;
    opacity: 0.8;
}

/* İletişim İçerik Alanı */
.contact-content {
    padding-bottom: 100px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    text-align: center;
}

.info-box {
    padding: 30px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: 0.3s;
}

.info-box:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-box h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--black);
}

.info-box p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
}

/* İletişim Formu */
.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 0;
}

.contact-form-section .section-title {
    margin-bottom: 40px;
    text-align: center;
    font-size: 28px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
    background-color: #fcfcfc;
    color: var(--black);
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #aaaaaa;
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 18px 20px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s;
}

.submit-btn:hover {
    background-color: var(--gray);
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .page-hero-content h1 { font-size: 35px; letter-spacing: 5px; }
    .page-hero-content p { font-size: 12px; letter-spacing: 2px; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .contact-form-section { padding: 30px 0; }
}
/* --- MOBİL GÜNCELLEME: LOGO ORTALAMA VE MENÜ GÖSTERME --- */
@media (max-width: 768px) {
    /* Mobilde gizli olan menüyü açıyoruz */
    .menu { 
        display: flex !important; 
        justify-content: center; 
        width: 100%;
        margin: 10px 0;
    }

    /* Header'ı dikey hizaya sokuyoruz */
    .header-flex {
        flex-direction: column !important;
        padding: 10px 0;
    }

    /* Logoyu mobilde tam merkezliyoruz */
    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .logo img {
        margin: 0 auto;
        height: 50px !important; /* Mobilde biraz küçülterek zarafeti koruyoruz */
    }

    /* Menü linklerini mobilde yan yana ve kibar diziyoruz */
    .left-menu, .right-menu {
        text-align: center !important;
        flex: none !important;
    }

    .menu a {
        font-size: 10px !important;
        letter-spacing: 1px !important;
        margin: 0 10px !important;
    }

    /* Hero ve Diğer Alanlar için Uyum */
    .hero { height: 50vh !important; }
    .hero h1 { font-size: 30px !important; letter-spacing: 5px !important; }
    .brand-story { padding: 60px 0 !important; }
}

.instagram-section { padding: 60px 0; background: #fff; }
.section-title { text-align: center; margin-bottom: 30px; }
.section-title h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: #1a1a1a; }
.section-title a { color: #888; text-decoration: none; font-size: 14px; letter-spacing: 1px; }

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.insta-item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-item .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s; color: white; font-size: 24px;
}

.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover .overlay { opacity: 1; }

@media (max-width: 768px) {
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
}