/* ===== GENEL STİLLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513;      /* Koyu kahverengi */
    --secondary-color: #CD853F;    /* Sandy brown */
    --accent-color: #FFD700;       /* Altın sarısı */
    --text-dark: #2F1B14;          /* Koyu kahve metin */
    --text-light: #F5F5DC;         /* Bej açık metin */
    --bg-warm: #FFF8DC;            /* Sıcak beyaz arka plan */
    --border-color: #D2691E;       /* Chocolate border */
    --shadow-color: rgba(139, 69, 19, 0.3);
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-warm);
    overflow-x: hidden;
    position: relative;
}

/* ===== ARKA PLAN DESENİ ===== */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(205, 133, 63, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
    z-index: -1;
    background-size: 400px 400px;
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(-10px) translateY(20px); }
    75% { transform: translateX(10px) translateY(10px); }
}

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

/* ===== NAVIGATION MENU ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(139, 69, 19, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-link.active {
    background: var(--accent-color);
    color: var(--text-dark);
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.4);
}

.nav-link:not(.active):hover {
    background: rgba(255, 215, 0, 0.7);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.nav-link.active:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    transform: translateY(-1px);
}

/* ===== HEADER - PORTFOLIO STYLE ===== */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
    padding-top: 80px; /* Space for fixed nav */
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 215, 0, 0.05) 10px,
            rgba(255, 215, 0, 0.05) 20px
        );
}

/* ===== FLOATING LADYBUGS ===== */
.floating-ladybugs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ladybug {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.8;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ladybug:hover {
    font-size: 3rem;
    opacity: 1;
}

.ladybug-1 {
    top: 20%;
    left: 10%;
    animation-name: float1;
    animation-delay: 0s;
}

.ladybug-2 {
    top: 60%;
    right: 15%;
    animation-name: float2;
    animation-delay: 1s;
}

.ladybug-3 {
    top: 30%;
    right: 5%;
    animation-name: float3;
    animation-delay: 2s;
}

.ladybug-4 {
    bottom: 30%;
    left: 5%;
    animation-name: float4;
    animation-delay: 3s;
}

.ladybug-5 {
    bottom: 15%;
    right: 25%;
    animation-name: float5;
    animation-delay: 4s;
}

@keyframes float1 {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(30px) translateY(-20px) rotate(90deg); }
    50% { transform: translateX(0) translateY(-40px) rotate(180deg); }
    75% { transform: translateX(-30px) translateY(-20px) rotate(270deg); }
    100% { transform: translateX(0) translateY(0) rotate(360deg); }
}

@keyframes float2 {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    33% { transform: translateX(-40px) translateY(30px) rotate(120deg); }
    66% { transform: translateX(40px) translateY(-30px) rotate(240deg); }
    100% { transform: translateX(0) translateY(0) rotate(360deg); }
}

@keyframes float3 {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    50% { transform: translateX(-50px) translateY(50px) rotate(180deg); }
    100% { transform: translateX(0) translateY(0) rotate(360deg); }
}

@keyframes float4 {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(40px) translateY(20px) rotate(90deg); }
    50% { transform: translateX(20px) translateY(-30px) rotate(180deg); }
    75% { transform: translateX(-20px) translateY(10px) rotate(270deg); }
    100% { transform: translateX(0) translateY(0) rotate(360deg); }
}

@keyframes float5 {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    20% { transform: translateX(25px) translateY(-25px) rotate(72deg); }
    40% { transform: translateX(-15px) translateY(-40px) rotate(144deg); }
    60% { transform: translateX(-35px) translateY(15px) rotate(216deg); }
    80% { transform: translateX(10px) translateY(35px) rotate(288deg); }
    100% { transform: translateX(0) translateY(0) rotate(360deg); }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

/* ===== LOGO SHOWCASE ===== */
.logo-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.main-logo {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    border: 6px solid var(--accent-color);
    box-shadow: 
        0 0 40px var(--shadow-color),
        0 0 80px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    animation: logoFloat 4s ease-in-out infinite;
    object-fit: contain;
    background: white;
    padding: 10px;
}

.main-logo:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 
        0 0 60px var(--shadow-color),
        0 0 120px rgba(255, 215, 0, 0.4),
        inset 0 0 30px rgba(255, 215, 0, 0.2);
}

.logo-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent 70%);
    animation: glow 3s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

/* ===== HERO TEXT ===== */
.hero-text {
    text-align: left;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    color: var(--accent-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-style: italic;
    opacity: 0.9;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-description {
    margin-top: 30px;
}

.hero-description p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0.85;
    max-width: 500px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: 80px 0;
}

/* ===== SECTION STİLLERİ ===== */
section {
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    margin: 15px auto;
    border-radius: 2px;
}

/* ===== SÜSLEMELER ===== */
.ornament {
    font-size: 2rem;
    color: var(--accent-color);
    text-align: center;
    opacity: 0.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.ornament-top {
    margin-bottom: 20px;
}

.ornament-bottom {
    margin-top: 20px;
}

/* ===== PORTFOLIO SECTIONS ===== */
.portfolio-section {
    margin-bottom: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-color);
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    min-height: 280px;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.portfolio-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px var(--shadow-color);
}

.portfolio-card:hover::before {
    left: 100%;
}

.card-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    padding: 30px;
    text-align: center;
    position: relative;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.card-header h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.card-content {
    padding: 30px;
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    text-align: justify;
}

/* ===== MİSYON & VİZYON ===== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.mission-card:hover::before {
    left: 100%;
}

.card-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ===== TAKVİM BÖLÜMÜ ===== */
.calendar-content {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.calendar-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow-color);
    position: relative;
    min-width: 350px;
    overflow: hidden;
}

.calendar-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.calendar-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.calendar-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.coming-soon {
    font-size: 1.5rem;
    font-style: italic;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.6; }
}

.ladybug-decoration {
    font-size: 2rem;
    position: absolute;
    top: 20px;
    right: 20px;
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== İLETİŞİM BÖLÜMÜ ===== */
.contact-section {
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

/* Email Section */
.email-section {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.email-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.contact-method {
    text-align: center;
}

.contact-method h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.email-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Social Media Section */
.social-section {
    background: linear-gradient(135deg, var(--bg-warm), white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.social-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.social-section h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-info {
    margin-top: 40px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
}

/* ===== SOSYAL MEDYA ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50%;
    border: 3px solid var(--border-color);
    box-shadow: 0 8px 25px var(--shadow-color);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px var(--shadow-color);
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-color: #bc1888;
}

.social-link i {
    font-size: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-ladybug {
    font-size: 1.5rem;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== RESPONSİVE TASARIM ===== */
@media (max-width: 768px) {
    /* Navigation Responsive */
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 8px 16px;
    }
    
    /* Header Responsive */
    .header {
        min-height: 80vh;
        padding-top: 70px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .main-logo {
        width: 220px;
        height: 220px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    /* Portfolio Cards */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .portfolio-card {
        min-height: auto;
    }
    
    /* Floating Ladybugs - Reduce for mobile */
    .ladybug {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .email-section,
    .social-section {
        padding: 30px 25px;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation Mobile */
    .main-nav {
        padding: 10px 0;
    }
    
    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 6px 12px;
    }
    
    /* Header Mobile */
    .header {
        min-height: 70vh;
        padding-top: 60px;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .main-logo {
        width: 180px;
        height: 180px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-card {
        margin: 0 10px;
    }
    
    .card-header {
        padding: 25px 20px;
    }
    
    .card-content {
        padding: 25px 20px;
    }
    
    .calendar-card {
        padding: 30px 20px;
        margin: 0 10px;
        min-width: auto;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px 0;
    }
    
    .email-section,
    .social-section {
        padding: 25px 20px;
    }
    
    .contact-method h3,
    .social-section h3 {
        font-size: 1.8rem;
    }
    
    .email-link {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Floating Ladybugs Mobile */
    .ladybug {
        font-size: 1.8rem;
    }
    
    /* Hide some floating ladybugs on small screens */
    .ladybug-4,
    .ladybug-5 {
        display: none;
    }
}
