/* 
  Visit Selcuk Ephesus - Premium Redesign Styles
  Focusing on Depth, Light, and Immersive Interactions.
*/

:root {
    --primary-ancient-stone: #F9F7F4;
    --accent-royal-gold: #C5A028;
    --accent-gold-light: #E8D49E;
    --secondary-deep-olive: #2A362A;
    --text-warm-charcoal: #1A1A1A;
    --text-muted: #555555;
    --text-light: #FFFFFF;

    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Inter', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(197, 160, 40, 0.2);
    --shadow-premium: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
    --shadow-inner: inset 0 2px 4px 0 rgba(255, 255, 255, 0.1);
    --backdrop-dark: rgba(0, 0, 0, 0.4);
}

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Inter:wght@300;400;500;600;700&display=swap');

body {
    background-color: var(--primary-ancient-stone);
    color: var(--text-warm-charcoal);
    font-family: var(--font-body);
    scroll-behavior: smooth;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.heading-elegant {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* Floating Navigation Island */
.nav-island {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 0.75rem 2rem;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: var(--shadow-premium);
}

.nav-island.scrolled {
    top: 1rem;
    width: calc(100% - 2rem);
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
}

/* Premium Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--accent-royal-gold), #A6851F);
    color: white;
    padding: 0.8rem 2.2rem;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 20px -5px rgba(197, 160, 40, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(197, 160, 40, 0.5);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    padding: 0.8rem 2.2rem;
    border-radius: 999px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--accent-royal-gold);
    color: white;
    border-color: var(--accent-royal-gold);
}

/* Typography Enhancements */
.text-gradient {
    background: linear-gradient(to right, var(--text-warm-charcoal), #4A4A4A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold {
    color: var(--accent-royal-gold);
}

/* Animation Keyframes */
@keyframes reveal {
    from {
        opacity: 0;
        clip-path: inset(100% 0 0 0);
    }

    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

.animate-reveal {
    animation: reveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-slow {
    animation: float 6s ease-in-out infinite;
}

/* Card Overlays & Depth */
.depth-card {
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.depth-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1);
}

/* Blog Specifics */
.blog-card-img-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 1.5rem;
}

.blog-card-img {
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.1);
}

/* Mesh Gradients */
.mesh-bg {
    background-color: #F9F7F4;
    background-image:
        radial-gradient(at 0% 0%, rgba(197, 160, 40, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(42, 54, 42, 0.05) 0px, transparent 50%);
}

/* Footer Luxury */
.footer-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Floating Action Button */
.fab-tickets {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--accent-royal-gold) !important;
    color: white !important;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    box-shadow: 0 15px 35px rgba(197, 160, 40, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

.fab-tickets:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 45px rgba(197, 160, 40, 0.6);
}

/* Hero Video */
.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Leaflet Customizations */
#interactive-map {
    height: 600px !important;
    width: 100% !important;
    border-radius: 2.5rem;
    z-index: 10;
    box-shadow: var(--shadow-premium);
}

.leaflet-popup-content-wrapper {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-radius: 1.5rem !important;
    padding: 0.5rem !important;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
}

.leaflet-popup-tip {
    background: rgba(255, 255, 255, 0.95) !important;
}