:root {
    --primary-color: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #bf953f;
    --secondary-hover: #d4af37;
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.8rem 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition);
}

.footer-logo {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    opacity: 0.85;
}

.nav-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.btn-cta {
    background: var(--secondary-color);
    color: var(--white) !important;
    padding: 0.7rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    opacity: 1 !important;
}

.btn-cta:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(191, 149, 63, 0.3);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--bg-dark);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero {
    height: 100vh;
    background: url('../assets/images/trakya_dil_kultur_hero_bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 58, 138, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.highlights {
    padding: 6rem 0;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: transparent;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.highlight-card:hover {
    background: #fdfdfd;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f8fafc;
    color: var(--primary-color);
    transition: var(--transition);
}

.highlight-card:hover .card-icon {
    background: var(--bg-dark);
    color: var(--white);
    transform: rotate(-5deg);
}

.highlight-card h3 {
    font-size: 1.25rem;
    color: var(--bg-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.highlight-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.highlight-link {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
}

.highlight-link .arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.highlight-link:hover {
    color: var(--primary-color);
    background: transparent;
}

.highlight-link:hover .arrow {
    transform: translateX(4px);
}

.who-we-are {
    padding: 10rem 0;
    background: var(--white);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.who-content {
    flex: 1;
}

.who-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--bg-dark);
}

.underline.left {
    margin: 1rem 0 2rem 0;
}

.who-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

.btn-primary.dark {
    background: var(--bg-dark);
    color: var(--white);
}

.who-image {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.who-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.blog-section {
    padding: 10rem 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.blog-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem;
    background: var(--white);
    border-radius: 30px;
    border: 2px dashed #e2e8f0;
    color: var(--text-muted);
}


footer {
    background: #020617;
    color: var(--white);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--glass-border), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-info .logo {
    margin-bottom: 2rem;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(8px);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-mail {
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-mail:hover {
    color: var(--secondary-color) !important;
}

.social-icons {
    margin-top: 2.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.social-link i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: var(--white);
    border-color: transparent;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.developer-credit {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.waldo-code {
    color: var(--white);
    font-weight: 800;
    letter-spacing: 3px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: var(--transition);
}

.waldo-code:hover {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 12rem 0 8rem;
    background: var(--bg-dark);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.7;
}

.story-section {
    padding: 10rem 0;
    background: var(--white);
}

.story-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 900px;
    line-height: 1.8;
}

.section-header.align-left {
    text-align: left;
}

.mission-vision {
    padding: 8rem 0;
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

.mv-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.values-section {
    padding: 10rem 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.value-item {
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: 20px;
    background: var(--bg-light);
    transition: var(--transition);
}

.value-item:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--bg-dark);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.activities-section {
    padding: 10rem 0;
    background: var(--bg-dark);
    color: var(--white);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.activity-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.05);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

.activity-card:hover .activity-icon {
    background: var(--secondary-color);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.activity-info {
    flex: 1;
}

.activity-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.activity-card p {
    opacity: 0.7;
    font-size: 1rem;
}

.join-us {
    padding: 15rem 0;
    position: relative;
    background: url('../assets/images/trakya_dil_kultur_hero_bg.png') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.join-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.8), rgba(2, 6, 23, 0.95));
    z-index: 1;
}

.join-us .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.join-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem;
    border-radius: 40px;
    text-align: center;
    max-width: 850px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.pre-title {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 2rem;
}

.join-glass-card h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.join-desc {
    margin-bottom: 3.5rem;
}

.join-desc p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.join-requirement {
    font-size: 0.95rem !important;
    color: var(--secondary-color) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.join-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.btn-premium {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.2rem 2.8rem;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(191, 149, 63, 0.3);
}

.btn-premium:hover {
    background: var(--secondary-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(191, 149, 63, 0.4);
}

.btn-link-white {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.btn-link-white::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .join-glass-card {
        padding: 3rem 1.5rem;
    }

    .join-glass-card h2 {
        font-size: 2.2rem;
    }

    .join-cta-group {
        flex-direction: column;
        gap: 1.5rem;
    }

    .join-us {
        padding: 8rem 0;
    }
}

.blog-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    padding: 10rem 0;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-post-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border-color: var(--secondary-color);
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-category {
    color: var(--secondary-color);
    font-weight: 700;
}

.blog-post-card h3 {
    font-size: 1.8rem;
    color: var(--bg-dark);
    margin-bottom: 1rem;
}

.blog-post-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.read-more {
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sidebar-widget {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
}

.sidebar-widget h4 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.search-box {
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-family: inherit;
}

.search-box button {
    background: var(--bg-dark);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--secondary-color);
}

.categories-widget ul {
    list-style: none;
}

.categories-widget li {
    margin-bottom: 1.2rem;
}

.categories-widget a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: var(--transition);
}

.categories-widget a:hover {
    color: var(--secondary-color);
}

.join-widget {
    background: var(--bg-dark);
    color: var(--white);
}

.join-widget h4 {
    color: var(--secondary-color);
}

.join-widget p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.btn-side {
    display: block;
    text-align: center;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.insta-btn-side {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 0.9rem;
}

.insta-btn-side i {
    font-size: 1.3rem;
    color: #E1306C;
}

.blog-placeholder-msg {
    padding: 3rem;
    text-align: center;
    border: 1px dashed #e2e8f0;
    border-radius: 16px;
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
}

.fade-up {
    animation: fadeUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.login-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.login-card .logo-container img {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.login-card h2 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.modal-content .form-group label {
    color: #111827 !important;
    font-weight: 700 !important;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    display: block;
}

.modal-content .form-group input,
.modal-content .form-group textarea,
.modal-content .form-group select {
    background: #ffffff !important;
    border: 2px solid #e5e7eb !important;
    color: #111827 !important;
    font-size: 1rem;
}

.modal-content .form-group input:focus {
    border-color: #BF953F !important;
    box-shadow: 0 0 0 3px rgba(191, 149, 63, 0.1);
}

.ql-editor {
    color: #111827 !important;
    font-size: 1rem;
    min-height: 200px;
}

.ql-snow .ql-picker {
    color: #374151 !important;
}

.modal-content .form-group input:focus,
.modal-content .form-group textarea:focus,
.modal-content .form-group select:focus {
    background: #fff;
    border-color: #BF953F;
}

#quill-editor {
    height: 300px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    border: 1px solid #e5e7eb;
    color: #1f2937;
}

.ql-toolbar {
    border-radius: 12px 12px 0 0;
    border: 1px solid #e5e7eb !important;
    background: #f9fafb;
}

.image-preview-container {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.image-preview {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-detail .post-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.form-group input:focus {
    outline: none;
    border-color: #BF953F;
    background: rgba(255, 255, 255, 0.12);
}

.btn-login {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #BF953F, #f7b733);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 182, 118, 0.4);
}


.admin-navbar {
    background: #1a1a2e;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.admin-container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #BF953F;
    color: white;
}

.admin-table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    color: #333;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.admin-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.action-btns {
    display: flex;
    gap: 0.5rem;
}

.btn-edit,
.btn-delete {
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
}

.btn-edit {
    background: #e3f2fd;
    color: #1976d2;
}

.btn-delete {
    background: #ffebee;
    color: #d32f2f;
}


.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    position: relative;
    color: #333;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal h3 {
    margin-bottom: 1.5rem;
}

.modal-content,
.modal-content * {
    color: #111827 !important;
}

.modal-content .btn-save,
.modal-content .btn-save * {
    color: #ffffff !important;
}

.modal-content .close-modal {
    color: #6b7280 !important;
}

.btn-logout {
    color: #ff4d4d !important;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}



.home-section-dynamic {
    padding: 12rem 0;
    transition: var(--transition);
}


#movie-recommendation {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#movie-recommendation::before {
    content: 'FILM';
    position: absolute;
    top: -50px;
    right: -20px;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
}

#movie-recommendation .who-content h2 {
    color: var(--secondary-color);
    font-size: 3.5rem;
}

#movie-recommendation .who-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    line-height: 1.8;
}

#movie-recommendation .who-image {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 18px 36px -18px rgba(191, 149, 63, 0.3);
    border: 1px solid rgba(191, 149, 63, 0.2);
}


#proverb-month {
    background: #fff;
    position: relative;
}

#proverb-month .who-content {
    background: #fdfdfd;
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    box-shadow: 20px 20px 60px #d1d9e6, -20px -20px 60px #ffffff;
}

#proverb-month .who-content h2 {
    color: var(--primary-color);
}

#proverb-month .section-tag {
    background: var(--primary-color);
    color: white;
}

#proverb-month .who-image {
    background: #fff;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.05);
    border: 8px solid #fff;
}

#proverb-text::before {
    content: '"';
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 20px;
}


.home-section-dynamic .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .home-section-dynamic {
        padding: 6rem 0;
    }

    .about-flex {
        flex-direction: column;
        gap: 3rem;
    }

    #proverb-month .who-content {
        padding: 2.5rem;
    }
}

.team-page-section {
    padding: 12rem 0;
    background: var(--bg-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    width: 100%;
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.team-member-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 40px;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.team-img-wrapper {
    width: 250px;
    height: 320px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    background: #f1f5f9;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-member-card:hover .team-img-wrapper img {
    transform: scale(1.12);
}

.team-info h3 {
    font-size: 1.6rem;
    color: var(--bg-dark);
    margin-bottom: 0.6rem;
    font-weight: 800;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .team-page-section {
        padding: 8rem 0;
    }

    .team-member-card {
        padding: 2rem 1.5rem;
    }
}