@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

:root {
    --primary-color: #ff0000;
    --secondary-color: #1a1a1a;
    --accent-color: #ff0000;
    --text-color: #1a1a1a;
    --bg-color: #ffffff;
    --light-gray: #f4f4f4;
    --dark-gray: #333333;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header ve Navigasyon */
header {
    background: var(--white);
    color: var(--text-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: var(--accent-color) 3px solid;
}

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

header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

header .logo img {
    height: 50px;
    margin-right: 15px;
    transition: var(--transition);
}

header .logo span {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

header .logo a:hover img {
    transform: scale(1.05);
}

header .logo a:hover span {
    color: var(--accent-color);
}

header nav {
    position: relative;
    transition: var(--transition);
}

header nav ul {
    list-style: none;
    display: flex;
}

header li {
    margin-left: 30px;
}

header a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

header a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

header a:hover::after,
header .active::after {
    width: 100%;
}

header a:hover,
header .active {
    color: var(--accent-color);
}

/* Hero Bölümü */
.hero {
    min-height: 350px;
    background-color: #fdfdfd;
    background-image: 
        radial-gradient(var(--accent-color) 0.5px, transparent 0.5px),
        radial-gradient(var(--accent-color) 0.5px, #fdfdfd 0.5px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 800px;
    font-weight: 300;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    color: var(--white);
    background: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
}

.btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Özellikler / Kartlar */
.features {
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: var(--accent-color) 5px solid;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.feature p {
    color: var(--dark-gray);
}

/* Instagram CTA */
.instagram-cta {
    background-color: #dc2743;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    background-position: 0 0, 20px 20px, 0 0;
    padding: 50px 20px;
    color: var(--white);
    text-align: center;
    margin: 50px 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.insta-content i {
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.insta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.insta-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.insta-btn {
    display: inline-block;
    padding: 15px 45px;
    background: var(--white);
    color: #dc2743;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--white);
    text-transform: lowercase;
}

.insta-btn:hover {
    background: transparent;
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Sayfa İçerikleri */
.content {
    padding: 60px 40px;
    background: var(--white);
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: var(--accent-color) 8px solid;
}

.content h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

/* Son İçerikler Bölümü */
.latest-content {
    padding-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--secondary-color);
}

.view-all {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
}

.view-all:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-item {
    background: var(--light-gray);
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    border: 1px solid #ddd;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

/* Shorts Grid */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.shorts-item {
    background: var(--light-gray);
    aspect-ratio: 9 / 16;
    border-radius: 10px;
    border: 1px solid #ddd;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    width: 100%;
    margin: 0 auto;
}

.shorts-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.shorts-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

/* Form */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

form input, form textarea {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

form input:focus, form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

form button {
    margin-top: 30px;
    padding: 15px;
    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: var(--transition);
}

form button:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

/* Footer */
footer {
    padding: 40px 0;
    color: var(--text-color);
    background-color: var(--bg-color);
    text-align: center;
    border-top: var(--accent-color) 3px solid;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
    display: inline-block;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hashtags */
.hashtags {
    margin-top: 50px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    text-align: center;
}

.hashtags h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hashtag-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.hashtag-item {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.hashtag-item:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 0 20px;
    }

    .menu-toggle {
        display: block;
    }

    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    header nav.active {
        max-height: 400px;
        border-bottom: var(--accent-color) 3px solid;
    }

    header nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    header li {
        margin: 0;
        text-align: center;
    }

    header nav ul li a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }

    header a::after {
        display: none;
    }

    .hero {
        padding: 40px 20px;
        min-height: 250px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .insta-content h2 {
        font-size: 1.8rem;
    }

    .insta-content p {
        font-size: 1.1rem;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .content {
        padding: 40px 20px;
        margin: 20px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    header .logo span {
        font-size: 1.1rem;
    }

    header .logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    header .logo span {
        font-size: 0.9rem;
    }
}



/* Video Detay Sayfası ve Overlay Linkleri */
.shorts-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}
.video-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: block;
    background: rgba(0,0,0,0); /* Bazı tarayıcılar için boş linke tıklanabilir alan sağlar */
}
.shorts-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.shorts-item iframe {
    pointer-events: none;
}