/* ===== RESET & BASE ===== */
:root {
    --primary: #111;
    --secondary: #8b7355;
    --accent: #a08060;
    --bg: #fff;
    --bg-alt: #f7f7f5;
    --text: #222;
    --text-light: #777;
    --border: #eee;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }
img { max-width: 100%; height: auto; display: block; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary);
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.top-contact span { color: #aaa; }
.top-contact i { color: var(--secondary); margin-right: 6px; }

.top-social a {
    color: #888;
    margin-left: 18px;
    font-size: 0.9rem;
}
.top-social a:hover { color: #fff; }

.top-announcement {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.85rem;
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    background: #f5f2ed !important;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}

.logo-img {
    max-height: 75px;
    width: auto;
    mix-blend-mode: darken;
}

/* ===== ANNOUNCEMENT BAR ===== */
.navbar-address {
    flex: 1;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-light);
}

.navbar-address i {
    color: var(--secondary);
    margin-right: 4px;
}

.navbar-announcement {
    flex: 1;
    margin: 0 30px;
    overflow: hidden;
    position: relative;
}

.announcement-scroll {
    display: inline-block;
    white-space: nowrap;
    animation: scrollText 15s linear infinite;
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 500;
}

@keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-link {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text) !important;
    padding: 8px 20px !important;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nav-link:hover { color: var(--secondary) !important; }
.nav-link::after { display: none; }

.dropdown-menu {
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-radius: 4px;
    max-height: 400px;
    overflow-y: auto;
    padding: 8px 0;
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 0.85rem;
}
.dropdown-item:hover {
    background: var(--bg-alt);
    color: var(--secondary);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    width: 100%;
    overflow: hidden;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.hero-slider .carousel-caption {
    background: rgba(0,0,0,0.5);
    padding: 15px 30px;
    border-radius: 4px;
    bottom: 40px;
}

.hero-slider .carousel-caption h2 {
    font-size: 1.3rem;
    margin: 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    margin: 0 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.hero-slider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
}

@media (max-width: 768px) {
    .hero-slider .carousel-item img {
        height: 400px;
    }
    .hero-slider .carousel-caption h2 {
        font-size: 1rem;
    }
}

/* ===== HERO (eski - kaldırıldı) ===== */
.hero-section {
    background: var(--primary);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero-section .container { position: relative; z-index: 2; }
.hero-section::before { display: none; }

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.hero-section p {
    font-size: 1rem;
    opacity: 0.7;
    max-width: 550px;
    margin: 0 auto 30px;
    font-weight: 300;
}

.btn-gold {
    background: var(--secondary);
    color: #fff;
    padding: 13px 36px;
    border-radius: 2px;
    font-weight: 400;
    font-size: 0.85rem;
    border: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-gold::before { display: none; }
.btn-gold:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139,115,85,0.3);
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-title h2::after { display: none; }

.section-title p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    background: #fff;
    box-shadow: none;
}

.product-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.product-card .card-img-wrapper {
    overflow: hidden;
    height: 300px;
    position: relative;
}
.product-card .card-img-wrapper::after { display: none; }

.product-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.03);
}

.product-card .card-body {
    padding: 24px;
    text-align: left;
}

.product-card .card-title {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.product-card .btn-outline-gold {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    border-radius: 2px;
    padding: 7px 20px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 12px;
    display: inline-block;
}
.product-card .btn-outline-gold::before { display: none; }
.product-card .btn-outline-gold:hover {
    background: var(--secondary);
    color: #fff;
}

/* ===== FEATURES ===== */
.features-section {
    background: var(--bg-alt);
    padding: 80px 0;
}

.feature-box {
    padding: 30px 20px;
    text-align: center;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}
.feature-box:hover { transform: none; box-shadow: none; }

.feature-box i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 16px;
}
.feature-box:hover i { transform: none; }

.feature-box h3, .feature-box h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-section { padding: 60px 0; }

.product-gallery img {
    border-radius: 4px;
    margin-bottom: 12px;
    cursor: pointer;
    box-shadow: none;
}
.product-gallery img:hover { transform: none; box-shadow: none; opacity: 0.9; }

.product-info h1, .product-info h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.product-info .description {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 0.95rem;
}

/* ===== ABOUT ===== */
.about-section { padding: 80px 0; }
.about-section img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.about-section img:hover { transform: none; }

/* ===== CONTACT ===== */
.contact-section { padding: 80px 0; }

.contact-info-card {
    background: var(--bg-alt);
    border: none;
    border-radius: 4px;
    padding: 36px 20px;
    height: 100%;
}
.contact-info-card:hover {
    box-shadow: none;
    transform: none;
    border-bottom-color: transparent;
}

.contact-info-card i {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 14px;
    display: block;
}
.contact-info-card:hover i { transform: none; }

.contact-info-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.contact-info-card a {
    color: var(--text-light);
}
.contact-info-card a:hover {
    color: var(--secondary);
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    margin-top: 40px;
    border: 1px solid var(--border);
}
.map-container iframe { width: 100%; height: 400px; border: none; }

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: #999;
    padding: 60px 0 30px;
    font-size: 0.85rem;
}

.footer h5 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-logo { max-height: 70px; mix-blend-mode: lighten; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 10px; font-size: 0.83rem; }
.footer-contact li:hover { transform: none; }
.footer-contact i { color: var(--secondary); margin-right: 8px; width: 16px; }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: #999;
    font-size: 0.83rem;
    padding-left: 0;
}
.footer-links a::before { display: none; }
.footer-links a:hover { color: #fff; padding-left: 0; }

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #333;
    border-radius: 50%;
    color: #999;
    margin-right: 8px;
    background: transparent;
}
.footer-social a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: none;
    box-shadow: none;
}

.footer hr { border-color: #222; margin: 30px 0 20px; }

/* ===== WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 54px;
    height: 54px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    z-index: 9999;
    animation: none;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
    animation: none;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--primary);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
}
.page-header .container { position: relative; z-index: 2; }
.page-header::before { display: none; }

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.page-header .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}
.page-header .breadcrumb-item a { color: var(--secondary); }
.page-header .breadcrumb-item.active { color: #888; }

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ===== BLOG ===== */
.blog-card {
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    background: #fff;
    box-shadow: none;
}
.blog-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}
.blog-card .card-img-top {
    height: 220px;
    object-fit: cover;
}
.blog-card:hover .card-img-top { transform: none; }
.blog-card .card-body { padding: 24px; }
.blog-card .card-title {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 10px;
}
.blog-card .card-text { color: var(--text-light); font-size: 0.85rem; }
.blog-card .blog-date { color: var(--secondary); font-size: 0.75rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.05em; }

.blog-detail-content { line-height: 1.9; font-size: 1rem; color: var(--text); }
.blog-detail-content h2 { font-size: 1.4rem; margin: 30px 0 12px; }
.blog-detail-content h3 { font-size: 1.2rem; margin: 24px 0 10px; }

/* ===== LEGAL ===== */
.legal-content { padding: 60px 0; }
.legal-content h2 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--primary); }
.legal-content h3 { font-size: 1.1rem; margin: 20px 0 8px; }
.legal-content p { line-height: 1.8; font-size: 0.9rem; margin-bottom: 12px; }

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    color: var(--text);
    padding: 20px 30px;
    z-index: 99999;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    border-top: 1px solid var(--border);
    display: none;
}
.cookie-popup.show {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.cookie-popup p { margin: 0; font-size: 0.83rem; flex: 1; min-width: 250px; color: var(--text-light); }
.cookie-popup a { color: var(--secondary); }
.cookie-popup .btn-cookie-accept {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}
.cookie-popup .btn-cookie-accept:hover { background: #333; }

/* ===== VIZYON MISYON ===== */
.vision-mission-section { padding: 60px 0; background: var(--bg-alt); }

.vm-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 36px 28px;
    height: 100%;
    border-top: 3px solid var(--secondary);
}
.vm-card:hover { transform: none; box-shadow: none; }
.vm-card i { font-size: 1.8rem; color: var(--secondary); margin-bottom: 16px; }
.vm-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.vm-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-section { padding: 60px 0; }
    .hero-section h1 { font-size: 1.8rem; }
    .product-card .card-img-wrapper { height: 220px; }
    .page-header h1 { font-size: 1.5rem; }
    .section-title h2 { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .top-bar { display: none; }
    .hero-section h1 { font-size: 1.5rem; }
    .hero-section { padding: 50px 0; }
    .navbar { padding: 14px 0; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f5f5f5; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #999; }

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
