/* === PREMIUM EMERALD & SILK DESIGN SYSTEM === */
:root {
    --bg-emerald: #3d7c65; /* Özel kurumsal zümrüt yeşili background */
    --bg-card: rgba(255, 255, 255, 0.05); /* Lüks mat şeffaflık */
    --text-pure: #ffffff;
    --text-gold: #d4af37; /* Detaylar ve vurgular için ipeksi altın tonu */
    --text-soft: #daeae3; /* Yeşil üzerinde gözü yormayan yumuşak font rengi */
    --border-soft: rgba(255, 255, 255, 0.12);
    --transition-luxury: all 0.8s cubic-bezier(0.25, 1, 0.22, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-emerald);
    color: var(--text-pure);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* === DEEP SILK OVERLAY === */
.ambient-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, #2b5948 0%, #3d7c65 50%, #1e3f33 100%);
    pointer-events: none;
}

.silk-blob {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    will-change: transform;
    transition: transform 1.2s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* === NAVIGATION === */
.nav-header {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 18px 45px;
    background: rgba(43, 89, 72, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 100px;
    border: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.nav-logo img {
    height: 32px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: var(--transition-luxury);
}

.nav-links a:hover {
    color: var(--text-pure);
    transform: translateY(-1px);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 24px 60px;
    position: relative;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--border-soft);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 35px;
}

.hero-logo-wrapper {
    max-width: 500px;
    width: 100%;
    margin-bottom: 45px;
    opacity: 0;
    transform: translateY(20px);
    animation: luxuryFadeIn 1.8s forwards cubic-bezier(0.25, 1, 0.22, 1);
}

.hero-main-logo {
    width: 100%;
    height: auto;
}

.hero-subtext {
    max-width: 700px;
    color: var(--text-soft);
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: -0.1px;
}

.scroll-line-wrapper {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-text {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-soft);
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-pure);
    animation: premiumScroll 2.5s infinite cubic-bezier(0.25, 1, 0.22, 1);
}

/* === BENTO GRID SECTION === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin-bottom: 120px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 28px;
    padding: 55px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-luxury);
    will-change: transform, box-shadow;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.card-tag {
    color: var(--text-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: inline-block;
}

.bento-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.bento-card p {
    color: var(--text-soft);
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 300;
}

.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }

.wide-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: var(--text-gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-soft);
}

/* === SHOPIFY STORE CARD & BUTTON === */
.ecom-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.luxury-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #152d24;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: var(--transition-luxury);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.luxury-shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
    background: var(--text-gold);
    color: #ffffff;
}

.luxury-shop-btn svg {
    transition: transform 0.4s ease;
}

.luxury-shop-btn:hover svg {
    transform: translateX(4px);
}

/* === CONTACT FORM & MAPS SECTION === */
.contact-section {
    padding: 100px 0 160px;
    background: rgba(0, 0, 0, 0.12);
    border-top: 1px solid var(--border-soft);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.contact-form-box p {
    color: var(--text-soft);
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Luxury Input Fields */
.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.luxury-form input, .luxury-form textarea {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 18px 24px;
    color: var(--text-pure);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    transition: var(--transition-luxury);
    outline: none;
}

.luxury-form input:focus, .luxury-form textarea:focus {
    border-color: var(--text-gold);
    background: rgba(0, 0, 0, 0.25);
}

.luxury-form input::placeholder, .luxury-form textarea::placeholder {
    color: rgba(218, 234, 227, 0.5);
}

.form-submit-btn {
    background: transparent;
    border: 1px solid var(--text-pure);
    color: var(--text-pure);
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition-luxury);
}

.form-submit-btn:hover {
    background: var(--text-pure);
    color: var(--bg-emerald);
}

/* Maps & Address Design */
.contact-maps-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.address-details h4 {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--text-gold);
    margin-bottom: 12px;
}

.address-details p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--text-soft);
}

.maps-link-wrapper {
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
}

.maps-placeholder {
    width: 100%;
    height: 320px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: var(--transition-luxury);
    cursor: pointer;
}

.maps-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gold);
    transition: var(--transition-luxury);
}

.maps-placeholder span {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-soft);
    font-weight: 500;
}

.maps-link-wrapper:hover .maps-placeholder {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--text-gold);
}

.maps-link-wrapper:hover .maps-icon-circle {
    background: var(--text-gold);
    color: #ffffff;
    transform: scale(1.1);
}

/* === FOOTER === */
footer {
    background: #152d24; /* Koyu orman yeşili alt taban */
    padding: 120px 0 60px;
    border-top: 1px solid var(--border-soft);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand p {
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 1rem;
    opacity: 0.8;
}

.footer-logo {
    height: 35px;
    margin-bottom: 30px;
}

.footer-links h4 {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--text-gold);
    margin-bottom: 28px;
}

.footer-links p, .footer-links a {
    color: var(--text-soft);
    line-height: 2;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    transition: var(--transition-luxury);
}

.footer-links a:hover {
    color: var(--text-pure);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
}

/* === ANIMATIONS === */
@keyframes luxuryFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes premiumScroll {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .col-8, .col-6, .col-4, .col-12 { grid-column: span 12; }
    .footer-content { grid-template-columns: 1fr; gap: 50px; }
    .nav-links { display: none; }
    .wide-flex { flex-direction: column; align-items: flex-start; }
    .bento-card { padding: 40px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; gap: 20px; }
    .maps-placeholder { height: 250px; }
}