/* General Settings */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    
    
    background-color: #fff;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-brand img {
    width: 150px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff7f50;
}

.navbar-toggler {
    border-color: #ff7f50;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/Untitled\ design.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.25rem;
    color: white;
}

.hero-section .btn-primary {
    background-color: #ff7f50;
    border-color: #ff7f50;
}

/* About Section */
#about h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 2rem;
}

#about p {
    color: #555;
    line-height: 1.8;
}

#about img {
    
    height: 25rem;
    border-radius: 15px;
    max-width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Channels Section */
.channel-card {
    background-color: #fff;
    height: 17rem;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.channel-logo {
    width: 100px;
    margin-bottom: 15px;
}

/* Contact Section */
#contact h2 {
    color: #333;
    margin-bottom: 2rem;
}

#contact form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#contact .btn-primary {
    background-color: #ff7f50;
    border-color: #ff7f50;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
}

footer p {
    margin: 0;
}
/* Genel Reklam Alanı Tasarımı */
.ad-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ad-container {
    max-width: 728px;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.ad-container img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Reklam Alanı Yazı Stili */
.ad-container p {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .ad-section {
        padding: 10px;
    }
    
    .ad-container {
        max-width: 100%;
    }
    #about img {
        display: flex;
        align-items: center;
        justify-content: center;
        
        
    }
    
}

