/* CSS Variables - Hogwarts Theme */
:root {
    --primary: #D3A625; /* Gold */
    --secondary: #1A472A; /* Slytherin Green */
    --accent: #740001;   /* Gryffindor Red */
    --dark: #1a1a1a;     /* Slightly lighter dark for a warmer feel */
    --dark-light: #2a2a2a;
    --gray: #3a3a3a;
    --gray-dark: #4a4a4a;
    --white: #f4e8c1; /* Parchment white */
    --light-gray: #d1c7a7;
    --text-gray: #bdae93;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Fantasy-themed fonts */
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark);
    overflow-x: hidden;
    /* Optional: Add a subtle parchment texture background */
    /* background-image: url('path/to/parchment-texture.png'); */
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Background Classes */
.bg-dark {
    background-color: var(--dark);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(211, 166, 37, 0.3);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    display: block;
    max-height: 120px; /* İstediğiniz gibi daha büyük logo */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Cinzel', serif;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(211, 166, 37, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.typing-text {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    min-height: 2rem;
}

.cursor {
    animation: blink 1s infinite;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(211, 166, 37, 0.3);
    font-family: 'Cinzel', serif;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 166, 37, 0.4);
}

/* Animated Gradient Text */
.animated-gradient-text {
    background: linear-gradient(
        to right,
        var(--accent),
        var(--primary),
        var(--secondary),
        var(--accent)
    );
    background-size: 300% 100%;
    animation: textShine 8s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
}

/* Sections */
.packages, .maps, .bots, .faq {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

/* Grid Styles */
.packages-grid, .maps-grid, .bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Card Styles */
.package-card, .bot-card, .map-card {
    background: var(--dark-light);
    border: 1px solid #444;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.package-card:hover, .bot-card:hover, .map-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(211, 166, 37, 0.2);
}

.package-card h3, .bot-card h3, .map-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✦'; /* Daha sihirli ve uyumlu bir sembol */
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.package-card button, .bot-card button, .map-card button {
    width: 100%;
    padding: 0.75rem;
    background: var(--gray);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cinzel', serif;
}

.package-card button:hover, .bot-card button:hover, .map-card button:hover {
    background: var(--gray-dark);
    transform: translateY(-2px);
}

/* EKLENDİ: Map Card Image */
.map-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-light);
    border: 1px solid #444;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--white);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--light-gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: #0f0f0f;
    border-top: 1px solid #333;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-gray);
    font-size: 1.25rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-gray);
}

/* About Page Styles */
.about-page {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.page-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Cinzel', serif;
}

.about-sections {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-section {
    background-color: var(--dark-light);
    border: 1px solid #444;
    border-radius: 1rem;
    padding: 2rem;
    transition: border-color 0.3s;
}

.about-section:hover {
    border-color: var(--primary);
}

.about-section h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-section p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Team Page Styles */
.team-page {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.team-description {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--dark-light);
    border: 1px solid #444;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s;
}

.team-card:hover {
    border-color: var(--primary);
}

.team-member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.team-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-card .username {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.team-card .role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-card .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-card .social-links a {
    color: var(--text-gray);
    font-size: 1.25rem;
    transition: color 0.3s;
}

.team-card .social-links a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes textShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid #444;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn {
        width: 100%;
        max-width: 300px;
    }

    .packages-grid, .maps-grid , .bots-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .about-section {
        padding: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 0.5rem;
    }
}