/* ============================================
   Rüzgar Tente - Ana Stil Dosyası
   ============================================ */

/* Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (max-width:600px) {
    .my-element-1 {
        font-size: xx-large !important;
    }

    .my-element-2 {
        font-size: 1.5rem !important;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Stilleri */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Üst Bilgi Çubuğu */
.top-info-bar {
    background: #393185;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-info-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-info-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-info-bar a:hover {
    color: #9eacf3;
}

.top-info-bar .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    position: relative;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    z-index: 10;
}

.navbar .logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #393185 0%, #9eacf3 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.navbar .logo-text h1 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #393185;
    margin: 0;
}

.navbar .logo-text p {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.navbar nav.left-menu {
    justify-content: flex-start;
}

.navbar nav.right-menu {
    justify-content: flex-end;
    margin-left: auto;
}

.navbar nav button,
.navbar nav a {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.navbar nav button:hover,
.navbar nav a:hover {
    color: #393185;
}

.navbar .cta-button {
    background: #393185;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.navbar .cta-button:hover {
    background: #9eacf3;
    transform: scale(1.05);
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #393185;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 1.75rem;
    height: 1.75rem;
}

/* Banner Section */
.banner-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #393185 0%, #4a3f9f 50%, #9eacf3 100%);
    overflow: hidden;
    padding-top: 10rem;
}

.banner-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 7rem;
    padding-bottom: 1.5rem;
    z-index: 20;
    text-align: center;
}

.banner-title h2 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

/* Swiper.js Video Banner Stilleri */
.video-swiper .swiper-button-next,
.video-swiper .swiper-button-prev {
    color: #ffffff;
    transition: all 0.3s ease;
}

.video-swiper .swiper-button-next:hover,
.video-swiper .swiper-button-prev:hover {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
}

.video-swiper .swiper-pagination-bullet {
    background-color: #ffffff;
    opacity: 0.7;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.video-swiper .swiper-pagination-bullet-active {
    background-color: #393185;
    opacity: 1;
    transform: scale(1.2);
}

.video-swiper .swiper-slide {
    height: 100%;
    width: 100%;
}

.video-swiper .swiper-slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .top-info-bar {
        display: none;
    }

    .navbar nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .navbar .logo-text {
        display: none;
    }

    .banner-section {
        padding-top: 6rem;
    }

    .banner-title {
        padding-top: 5rem;
    }

    .banner-title h2 {
        font-size: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .banner-title h2 {
        font-size: 4rem;
    }
}

@media (min-width: 1025px) {
    .banner-title h2 {
        font-size: 6rem;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes float {

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

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

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

.animate-float-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.p-4 {
    padding: 1rem;
}

.p-8 {
    padding: 2rem;
}

@media (min-width: 1536px) {
    .container {
        max-width: 1350px !important;
    }
}

.to-\[\#9eacf3\]\/90 {
    --tw-gradient-to: rgb(158 172 243 / 39%) var(--tw-gradient-to-position) !important;
}