/** 
 * CSS FOR ALANYA DELIGHTS
 * Ultra Premium, Modern, and Responsive Design
 */

:root {
    /* Color Palette - Premium Gold and Deep Charcoal/Burgundy */
    --primary-color: #1a1a2e;      /* Deep luxurious blue/black */
    --primary-light: #2d2b3b;
    --secondary-color: #d4af37;    /* Classic Gold */
    --secondary-light: #f5d76e;
    --accent-red: #8c001a;         /* Deep rich red for lokum vibes */
    --bg-color: #fcfcfc;
    --surface-color: #ffffff;
    --text-dark: #121212;
    --text-light: #636e72;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1ebd5a;
    
    /* Shadows */
    --shadow-sm: 0 4px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(212, 175, 55, 0.15); /* Gold tinted shadow */
    
    /* Border Radius */
    --radius: 16px;
    --radius-lg: 24px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif; /* Very premium, elegant serif font */
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.text-gold {
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px; /* Pillow shape for premium feel */
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--secondary-color), #c5a017);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    color: black;
}

.btn-whatsapp-large {
    background-color: transparent;
    border: 2px solid var(--whatsapp-color);
    color: white;
}

.btn-whatsapp-large:hover {
    background-color: var(--whatsapp-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-nav {
    background-color: var(--whatsapp-color);
    color: white;
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-nav:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.02);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85); /* More transparent */
    backdrop-filter: blur(15px); /* Stronger glassmorphism */
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: padding 0.4s ease, background 0.4s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2); /* Gold subtle line */
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: height 0.4s ease;
}

.navbar.scrolled .nav-content {
    height: 70px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--secondary-color);
}

.brand-logo-img {
    height: 80px;
    vertical-align: middle;
    background: transparent;
    mix-blend-mode: multiply;
    transition: height 0.4s ease;
}

.navbar.scrolled .brand-logo-img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    background: none;
    cursor: pointer;
    border: none;
}

/* HERO SLIDER (Premium Swiper) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 6s linear; /* Slow zoom effect for premium feel */
}

.swiper-slide-active .hero-bg {
    transform: scale(1.05); /* Slight Ken Burns effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero .badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: var(--secondary-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Swiper Controls Customization */
.swiper-button-next, .swiper-button-prev {
    color: var(--secondary-color) !important;
    background: rgba(0,0,0,0.3);
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px !important;
}
.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}
.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
    opacity: 1;
    transform: scale(1.3);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 20;
    padding-bottom: 80px;
}

.feature-box {
    background: var(--surface-color);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--text-dark));
}

.feature-box:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary-color);
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.feature-box h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.feature-box p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Products Section */
.products-section {
    padding: 80px 0 100px;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2 span {
    color: var(--secondary-color);
    font-style: italic;
}

.section-title p {
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 30px;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    color: var(--text-dark);
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--surface-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08); /* Slower, elegant zoom */
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.product-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.product-info .desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-info .price {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 25px;
}

.product-info .price span {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--text-light);
}

.btn-order {
    width: 100%;
    background-color: transparent;
    color: var(--whatsapp-color);
    border: 2px solid var(--whatsapp-color);
    font-weight: 600;
}

.btn-order:hover {
    background-color: var(--whatsapp-color);
    color: white;
}

/* Load More / SEO Area */
.load-more-container {
    text-align: center;
    margin-top: 80px;
}

.seo-about-section {
    padding: 60px 20px;
    margin-bottom: 60px;
}

.seo-box {
    background: linear-gradient(135deg, var(--primary-color), #2d2b3b);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    color: white;
    text-align: center;
    position: relative;
}
.seo-box::after {
    content: '\f005'; /* FontAwesome star */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 20px; right: 30px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.05);
}

.seo-box h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.seo-box h2 span {
    color: var(--secondary-color);
}

.seo-box p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto; margin-right: auto;
}
.seo-box strong {
    color: var(--secondary-light);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #f1f1f1;
    padding: 80px 0 20px;
    border-top: 5px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.footer-brand h2 span {
    color: var(--secondary-color);
    font-style: italic;
}

.footer-brand p {
    color: #aaa;
    max-width: 400px;
    font-size: 1.05rem;
}

.footer-links h3, .footer-contact h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-family: 'Outfit', sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    transition: var(--transition);
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 8px; /* Slide effect */
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #777;
    font-size: 0.95rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--whatsapp-color), #20a049);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* CSS Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.d-delay-1 { transition-delay: 0.1s; }
.d-delay-2 { transition-delay: 0.2s; }
.d-delay-3 { transition-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .hero h1 { font-size: 4rem; }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .logo {
        font-size: 1.25rem;
        gap: 5px;
    }
    .brand-logo-img {
        height: 55px !important;
    }
    .navbar.scrolled .brand-logo-img {
        height: 50px !important;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .lang-switch {
        margin-right: 0px !important;
    }
    .lang-dropbtn {
        padding: 4px 8px;
        font-size: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
        margin-left: 5px;
    }
    
    .btn-whatsapp-nav {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .swiper-button-next, .swiper-button-prev {
        display: none; /* Hide arrows on mobile */
    }
    .seo-box {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    .section-title h2 {
        font-size: 2.2rem;
    }
    .features {
        margin-top: 0; /* Adjust for mobile flow */
        padding-top: 40px;
    }
}

/* Disguise element handling for simple filtering */
.hide-product {
    display: none !important;
}

/* Language Dropdown (Dynamic) */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}
.lang-dropbtn {
    background-color: transparent;
    color: var(--text-dark);
    padding: 6px 12px;
    font-size: 1.2rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.lang-dropbtn:hover, .lang-dropdown:hover .lang-dropbtn {
    background-color: rgba(0,0,0,0.03);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.lang-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 140px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 12px;
    z-index: 1000;
    top: 100%;
    margin-top: 8px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}
/* Invisible hover bridge to prevent dropout */
.lang-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -10px;
    right: -10px;
    height: 15px; /* bridges the 8px margin */
    background: transparent;
    z-index: 999;
}
.lang-dropdown-content a {
    color: var(--text-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s;
}
.lang-dropdown-content a:hover {
    background-color: #f8f9fa;
    color: var(--secondary-color);
}
.lang-dropdown:hover .lang-dropdown-content {
    display: block;
    animation: fadeIn 0.3s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* Base Unified Navigation Classes - Applied Across ALL 16 pages */
.solid-nav {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.solid-nav .logo {
    color: var(--primary-color) !important;
}
.solid-nav .nav-links a {
    color: var(--primary-color) !important;
    font-weight: 500;
}
.solid-nav .nav-links a.active-nav {
    color: var(--secondary-color) !important;
    font-weight: 700;
}
.solid-nav .menu-toggle {
    color: var(--primary-color) !important;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
@media (max-width: 768px) {
    .nav-actions {
        gap: 10px;
    }
}

/* Blog Page Styles (Recovered) */
.blog-wrapper {
    padding: 60px 0;
    background-color: var(--bg-color);
}
.blog-header {
    text-align: center;
    margin-bottom: 50px;
}
.blog-header h1 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 10px;
}
.blog-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: left;
}
.blog-card:hover {
    transform: translateY(-10px);
}
.blog-card .meta-tags {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}
.blog-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Places to Visit / Gezilecek Yerler Cards */
.places-section-title {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
    padding: 0 20px;
}
.places-section-title h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}
.places-section-title h2 span {
    color: var(--secondary-color);
    font-style: italic;
}
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 20px;
}
.place-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}
.place-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.place-img-container {
    overflow: hidden;
    height: 250px;
    width: 100%;
}
.place-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.place-card:hover .place-img {
    transform: scale(1.08); /* Zoom effect on hover */
}
.place-info {
    padding: 25px;
}
.place-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.place-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}
