/* KulturBrücke Ibbenbüren - Modern CSS Styles */

:root {
    --primary-color: #3498db;     /* Bright blue - matches logo */
    --secondary-color: #e74c3c;   /* Vibrant red - puzzle piece */
    --accent-color: #f1c40f;      /* Golden yellow - logo yellow */
    --success-color: #2ecc71;     /* Vibrant green - puzzle piece */
    --purple-color: #9b59b6;      /* Purple - logo purple tone */
    --orange-color: #e67e22;      /* Orange - logo orange tone */
    --dark-color: #2c3e50;        /* Dark gray - unchanged */
    --light-color: #f8f9fa;       /* Light gray - unchanged */
    --gray-color: #6c757d;        /* Medium gray - unchanged */
    --border-radius: 10px;
    --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --box-shadow-hover: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    padding-top: 76px; /* Navigation height */
}

/* Navigation Styles */
.navbar {
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.btn-hero {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

/* Card Styles */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:nth-child(1) .feature-icon {
    color: var(--primary-color);
}

.feature-card:nth-child(2) .feature-icon {
    color: var(--secondary-color);
}

.feature-card:nth-child(3) .feature-icon {
    color: var(--success-color);
}

.feature-card:nth-child(4) .feature-icon {
    color: var(--accent-color);
}

.feature-card:nth-child(5) .feature-icon {
    color: var(--purple-color);
}

.feature-card:nth-child(6) .feature-icon {
    color: var(--orange-color);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Event Cards */
.event-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.event-date {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.event-content {
    padding: 1.5rem;
}

/* Team Member Cards */
.team-card {
    text-align: center;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
}

.team-content {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.team-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Form Styles */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 12px 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

/* Gallery Styles */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow-hover);
}

/* Footer Styles */
footer {
    background: var(--dark-color) !important;
}

.social-links a {
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 66px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .card-body {
        padding: 1rem;
    }
}

/* Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-purple {
    color: var(--purple-color) !important;
}

.text-orange {
    color: var(--orange-color) !important;
}

.bg-light-gray {
    background-color: #f8f9fa;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--orange-color)) !important;
}

.rounded-lg {
    border-radius: var(--border-radius) !important;
}

.shadow-custom {
    box-shadow: var(--box-shadow);
}

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--box-shadow-hover);
}

/* Footer Styles */
footer {
    background-color: #1a1a1a !important;
}

footer .text-light {
    color: #ffffff !important;
}

footer .opacity-75 {
    opacity: 0.85 !important;
}

footer h5, footer h6 {
    color: #ffffff !important;
    font-weight: 600;
}

footer a.text-light {
    transition: var(--transition);
}

footer a.text-light:hover {
    color: var(--primary-color) !important;
    opacity: 1 !important;
}

footer .social-links a {
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

footer .social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

footer .border-secondary {
    border-color: #444444 !important;
}

footer .text-warning {
    color: #ffc107 !important;
}

footer .text-primary {
    color: var(--primary-color) !important;
}

/* ==========================================
   HERO SECTION - YENİ TASARIM
   ========================================== */

.hero-title-small {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    animation: fadeInUp 0.8s ease;
    line-height: 1.2;
}

.hero-subtitle-small {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.5;
}

.hero-logo {
    animation: fadeInUp 0.8s ease 0.3s both;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* Hero Duyuru/Announcement Kartı */
.hero-announcement {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.4s both;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-announcement-empty {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-badge {
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.announcement-media {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.announcement-image,
.announcement-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.announcement-content {
    padding: 15px;
}

.announcement-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.announcement-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Video Play Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-overlay i {
    opacity: 0.9;
    transition: var(--transition);
}

.video-play-overlay:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive Hero */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title-small {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .hero-subtitle-small {
        text-align: center;
    }
    
    .hero-content .d-flex {
        justify-content: center;
    }
    
    .hero-announcement {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-title-small {
        font-size: 1.3rem;
    }
    
    .announcement-media {
        height: 150px;
    }
}

/* Hero Carousel Stilleri */
.hero-announcement .carousel-indicators {
    margin-bottom: 0;
    position: static;
    justify-content: center;
    padding: 10px 0;
}

.hero-announcement .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.hero-announcement .carousel-indicators button.active {
    background-color: white;
}

.hero-announcement .carousel-control-prev,
.hero-announcement .carousel-control-next {
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    opacity: 0.7;
}

.hero-announcement .carousel-control-prev {
    left: 5px;
}

.hero-announcement .carousel-control-next {
    right: 5px;
}

.hero-announcement .carousel-control-prev:hover,
.hero-announcement .carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.hero-announcement .carousel-control-prev-icon,
.hero-announcement .carousel-control-next-icon {
    width: 15px;
    height: 15px;
}

/* Video Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    cursor: pointer;
    opacity: 0.9;
    transition: var(--transition);
    z-index: 10;
}

.video-play-btn:hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.announcement-media {
    position: relative;
}