/* VizesizGez Unified Home CSS */
:root {
    --primary-color: #00b4d8;
    --primary-dark: #0077b6;
    --secondary-color: #ff9f1c;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --gradient-primary: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.8));
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
}

/* Hero Section */
.hero-section {
    height: 85vh;
    min-height: 600px;
    background-color: var(--dark-bg);
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s linear;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.text-gradient {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Stats */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    transition: transform 0.3s ease;
}

.glass-effect:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

/* Cards & Hover Effects */
.card-hover-3d {
    perspective: 1000px;
}

.card-hover-3d .card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-hover-3d:hover .card {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover) !important;
}

.card-img-wrapper {
    overflow: hidden;
}

.card-img-wrapper img {
    transition: transform 0.6s ease;
}

.card-hover-3d:hover img {
    transform: scale(1.1);
}

.card-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.glass-badge {
    backdrop-filter: blur(5px);
    background: rgba(25, 135, 84, 0.8) !important;
}

/* City Cards */
.city-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-img-wrapper img {
    transition: transform 0.5s ease;
}

.city-card:hover .city-img-wrapper img {
    transform: scale(1.1);
}

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    pointer-events: none;
}

/* Blog Section */
.blog-card-main .card-img-wrapper img {
    transition: transform 0.5s ease;
}

.blog-card-main:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.blog-card-side {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-side:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-soft) !important;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Utilities */
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }

.object-fit-cover {
    object-fit: cover;
}

/* Search Input Placeholder Color */
::placeholder {
    color: #94a3b8 !important;
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .display-2 {
        font-size: 2.5rem;
    }
    
    .stats-bar-wrapper {
        position: relative !important;
        transform: none !important;
        left: auto !important;
        margin-top: 2rem;
    }
}
