
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;1,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0b1120; 
    color: #ffffff; 
}

/* Üst Menü (Navbar) Tasarımı */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background-color: #0b1120;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
}

/* Hamburger İkonu Tasarımı (Masaüstünde Gizli) */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.841));
}

.logo-icon {
    margin-right: 10px;
    color: #fffcfc;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #777; 
}

/* Ana İçerik (Hero Section) Tasarımı */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('bg.jpg') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed; 
}

.hero-content {
    max-width: 850px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 60px; 
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    filter: drop-shadow(0 0 5px rgba(253, 253, 253, 0.8)) 
            drop-shadow(0 0 1px rgba(203, 199, 203, 0.5))
            drop-shadow(0 0 1px rgba(89, 85, 92, 0.4));
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    font-weight: 600;
}

/* Buton Tasarımı */
.btn {
    display: inline-block;
    padding: 15px 45px;
    margin-top: 15px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn:hover {
    background-color: #b9b8b8;
    color: #0b1120;
}


@media (max-width: 768px) {
    
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 30px;
    }

    
    .hamburger {
        display: block;
        transform: translateX(70px);
    }

    
    nav ul {
        position: fixed;
        left: -100%;
        top: 65px; 
        flex-direction: column;
        background-color: #0b1120;
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        padding: 30px 0;
        margin-top: 0;
        gap: 30px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.5);
        z-index: 999;
    }

    
    nav ul.active {
        left: 0;
    }

    .hero {
        background-attachment: scroll; 
        background-position: center 20%; 
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1rem;
    }
}


.footer {
    background-color: #0b1120; 
    padding: 60px 40px 30px;
    border-top: 1px solid #0b1120;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-left p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
}

.social-icons a {
    margin-right: 15px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 150px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-style: italic;
    color: #ffffff;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #ffffff;
    font-weight: 600;
}

.footer-contact p {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-legal {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.8rem;
    color: #ffffff;
}

.footer-legal h4 {
    font-style: italic;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-legal p {
    margin-bottom: 5px;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}


.about-page {
    margin-top: 100px; 
    min-height: 80vh;
    padding-bottom: 50px;
}

.about-hero {
    height: 300px;
    background: linear-gradient(rgba(11, 17, 32, 0.8), rgba(11, 17, 32, 0.8)), url('bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.about-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    border-left: 5px solid #ffffff;
    padding-left: 15px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

/* İstatistik Kartları */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0;
}


.about-header-wrapper {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.about-text-side {
    flex: 2; 
}

.school-logo {
    flex: 1; 
    text-align: right;
}

.school-logo img {
    max-width: 280px; 
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}


@media (max-width: 768px) {
    .about-header-wrapper {
        flex-direction: column-reverse; 
        text-align: center;
    }
    .about-text-side {
        border-left: none;
        padding-left: 0;
    }
    .school-logo {
        text-align: center;
        margin-bottom: 20px;
    }
    .about-hero h1 {
        font-size: 3rem; 
    }
    .about-content h2 {
        font-size: 1.8rem; 
        margin-bottom: 15px;
    }
    .about-content p {
        font-size: 0.95rem; 
        line-height: 1.6; 
    }
}


.robots-focus {
    position: relative;
    padding-top: 120px;
    padding-bottom: 0px; 
    background-color: #0b1120;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}
.bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
    pointer-events: none;
}

.robot-hero-image, 
.robot-info-content {
    position: relative;
    z-index: 2; 
}

.robot-hero-image {
    width: 100%;
    max-width: 500px; 
    margin-bottom: 10px; 
    padding: 0 20px;
    height: 500px; 
    overflow: hidden; 
    display: flex;
    align-items: center; 
    justify-content: center;
}

.robot-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    object-position: center ; 
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.08));
    transition: transform 0.5s ease;
}

.robot-name {
    font-size: 3rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.robot-subtitle {
    font-size: 1.1rem;
    color: #888;
    font-weight: 600;
    margin-bottom: 30px;
}


.divider-line {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    margin: 20px auto 40px;
    opacity: 0.5;
}


.specs-grid-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    padding: 0 40px 100px;
}

.spec-block h3 {
    font-size: 0.9rem;
    color: #ffffff; 
    letter-spacing: 2px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.spec-block p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
}


@media (max-width: 768px) {
    .robot-name { font-size: 1.8rem; }
    .specs-grid-minimal { grid-template-columns: 1fr; }
}


:root {
    --bg-dark: #0b1120;
    --neon-blue: #00d2ff;
    --neon-purple: #8c7ae6;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-dim: #aeb4c2;
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.4s ease;
}


.cursor-glow {
    width: 25px;
    height: 25px;
    background: var(--neon-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-purple);
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}


.contact-terminal {
    min-height: 100vh;
    padding: 120px 20px 60px;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.terminal-container {
    max-width: 1100px;
    width: 100%;
    z-index: 5;
}

.terminal-header {
    text-align: center;
    margin-bottom: 50px;
}

.status-indicator {
    font-size: 0.7rem;
    color: var(--neon-blue);
    letter-spacing: 3px;
    font-weight: 800;
}

.terminal-header h1 {
    font-size: 3.5rem;
    font-style: italic;
    font-weight: 800;
    letter-spacing: 5px;
    margin: 10px 0;
    color: var(--text-main);
}

.terminal-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    margin: 0 auto;
}


.terminal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.full-height {
    height: 100%;
    justify-content: space-between;
}

.glass-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.1);
}

/* Kart Detayları */
.card-tag {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 0.6rem;
    color: var(--neon-purple);
    font-weight: 800;
    letter-spacing: 2px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--neon-blue);
}

.card-content p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* --- 5. İNTERAKTİF ÖĞELER VE BUTONLAR --- */
.action-btn {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    padding: 10px 25px;
    border: 1px solid var(--text-main);
    border-radius: 5px;
    transition: var(--transition-fast);
    display: inline-block;
    width: fit-content;
}

.action-btn:hover {
    background: var(--text-main);
    color: var(--bg-dark);
}

.social-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.social-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-purple);
    transform: translateX(10px);
}

.platform { font-weight: 800; color: var(--text-main); font-size: 0.8rem; }
.handle { color: var(--neon-purple); font-size: 0.8rem; }

.system-logs {
    margin-top: 40px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.7rem;
    color: #4a5568;
}

/* --- 6. HARİTA (MAP) TASARIMI --- */
.card-map {
    width: 100%;
    height: 180px;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 210, 255, 0.2);
    position: relative;
}

.card-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.9) hue-rotate(180deg) brightness(0.8);
    transition: 0.5s ease;
}

.card-map:hover iframe {
    filter: grayscale(0) invert(0) hue-rotate(0deg) brightness(1);
}

/* --- 7. ARKA PLAN VE RESPONSIVE --- */
.bg-lines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(0, 210, 255, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 210, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    mask-image: radial-gradient(circle, black, transparent 80%);
}

/* Mobilde İletişim Sayfası Ayarları (En alttaki bloğun) */
@media (max-width: 768px) {
    .terminal-grid {
        grid-template-columns: 1fr;
    }
    .terminal-header h1 {
        font-size: 2.2rem;
    }
    .glass-card {
        padding: 50px 20px 25px;
    }
    .card-content h3 {
        font-size: 1.15rem; 
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-all; 
        line-height: 1.4;
    }
    .social-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .handle {
        font-size: 0.75rem;
        word-break: break-all;
    }
}