/* Custom Styles for Taşkın Taşımacılık */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #0f172a; /* Navy/Anthracite */
    --accent: #2563eb; /* Trust Blue */
    --bg-dark: #020617;
    --text-light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden; /* Controlled by Swiper */
}

/* Header & Navigation */
header {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 1.5rem 1rem;
}

header.header-active {
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(15px);
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    pointer-events: auto !important;
}

/* Swiper Fixes */
.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Section Styles */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Sections specific adjustments */
.section-title {
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Swiper Pagination Enhancement */
.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.6);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    text-decoration: none;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.1rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem !important;
        margin-top: 2rem;
    }
    
    .hero-content p {
        font-size: 0.95rem !important;
    }

    .swiper-slide {
        padding-top: 80px;
        justify-content: flex-start !important;
    }

    .container {
        padding-top: 1rem;
        padding-bottom: 4rem;
    }

    .grid-cols-2 { grid-template-columns: 1fr !important; }
    .md\:grid-cols-4 { grid-template-columns: 1fr 1fr !important; }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    /* Show pagination better on mobile */
    .swiper-pagination {
        right: 15px !important;
    }
}

/* Fix for small screens/landscape height */
@media (max-height: 750px) {
    .gsap-reveal, .gsap-reveal-left, .gsap-reveal-right {
        margin-bottom: 0.5rem !important;
    }
    .hero-content h2 {
        font-size: 1.8rem !important;
    }
}

/* Social Media Section Specifics */
#social-feed .container, #about .container {
    max-height: 85vh;
}

@media (max-width: 768px) {
    #social-feed .container, #about .container {
        overflow-y: auto;
        padding-bottom: 6rem;
    }
}


