/* Global Styles */
:root {
    --primary-color: #00ff88;
    --secondary-color: #00ccff;
    --dark-color: #0a0a0a;
    --darker-color: #050505;
    --light-color: #ffffff;
    --gray-color: #1a1a1a;
    --text-color: #e0e0e0;
    --gradient-1: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    --gradient-2: linear-gradient(135deg, var(--dark-color), var(--darker-color));
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 1rem 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(10, 10, 10, 0.98);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

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

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    z-index: -1;
    transition: all 0.3s ease;
}

.btn:hover::before {
    transform: scale(1.1);
}

.btn-primary {
    background: transparent;
    border: none;
    color: var(--light-color);
}

/* Cards */
.card {
    background-color: var(--gray-color);
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 4s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
}

/* Footer */
.footer {
    background-color: var(--darker-color);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0.1;
    pointer-events: none;
}

.footer h3 {
    color: var(--light-color);
    margin-bottom: 20px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-5px);
}

.copyright {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--dark-color);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }
    #mainSlider {
        margin-top: 56px;
    }
    .carousel-caption {
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90vw;
        min-width: unset;
        padding: 1rem 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .footer {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .carousel-caption {
        font-size: 0.9rem;
        padding: 0.5rem 0.2rem;
        border-radius: 8px;
    }
    .carousel-caption h5 {
        font-size: 1rem;
    }
    .carousel-caption p {
        font-size: 0.8rem;
    }
}

/* Slider Caption Özelleştirme */
.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
    background: rgba(0,0,0,0.5);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    left: 50%;
    right: auto;
    width: fit-content;
    min-width: 320px;
    max-width: 90vw;
    text-align: center;
    z-index: 2;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.carousel-caption h5 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.carousel-caption p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0;
}
@media (max-width: 767.98px) {
    .carousel-caption {
        padding: 1rem 0.5rem;
        min-width: 180px;
    }
    .carousel-caption h5 {
        font-size: 1.3rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
}

#mainSlider {
    margin-top: 80px;
} 