﻿/* Alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    background-color: #fef7ff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Animált háttér */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.dance-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    animation: float 15s infinite linear;
    opacity: 0.7;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3) 0%, rgba(255,105,180,0) 70%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(147, 112, 219, 0.3) 0%, rgba(147,112,219,0) 70%);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.3) 0%, rgba(255,20,147,0) 70%);
    bottom: 10%;
    left: 15%;
    animation-delay: 4s;
}

.shape4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(218, 112, 214, 0.3) 0%, rgba(218,112,214,0) 70%);
    top: 20%;
    right: 20%;
    animation-delay: 6s;
}

.shape5 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(199, 21, 133, 0.3) 0%, rgba(199,21,133,0) 70%);
    bottom: 30%;
    right: 5%;
    animation-delay: 8s;
}

.shape6 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(238, 130, 238, 0.3) 0%, rgba(238,130,238,0) 70%);
    top: 70%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(20px) rotate(270deg);
    }
}

/* Fejléc */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(147, 112, 219, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 84px; /* 70px * 1.2 = 84px */
    width: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-text h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 28px;
    background: linear-gradient(90deg, #ff69b4, #9370db, #db34a6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.tagline {
    font-size: 14px;
    color: #9370db;
    font-weight: 600;
}

/* Navigációs menü */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-item a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item a:hover {
    color: #ff69b4;
    background-color: rgba(255, 105, 180, 0.1);
}

.nav-item.active a {
    color: #fff;
    background: linear-gradient(90deg, #ff69b4, #9370db);
    box-shadow: 0 4px 10px rgba(147, 112, 219, 0.3);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: #9370db;
    cursor: pointer;
}

/* Fő tartalom */
.main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Hero rész */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 245, 0.9));
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(147, 112, 219, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, rgba(255,105,180,0) 70%);
    border-radius: 50%;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff1493, #9370db);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
}

.btn-primary {
    background: linear-gradient(90deg, #ff69b4, #db34a6);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #9370db;
    border: 2px solid #9370db;
}

.btn-secondary:hover {
    background-color: rgba(147, 112, 219, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.zumba-dancers {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #ff69b4, #9370db, #ff1493);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(147, 112, 219, 0.3);
}

.zumba-dancers::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    top: 50px;
    left: 50px;
    opacity: 0.3;
}

.zumba-dancers::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: white;
    border-radius: 50%;
    bottom: 30px;
    right: 50px;
    opacity: 0.2;
}

/* Funkciók szekció */
.features-section {
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #9370db;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #9370db);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(147, 112, 219, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #ff69b4;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ffb6c1, #ff69b4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

.feature h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #9370db;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Órarend szekció */
.schedule-section {
    margin-bottom: 80px;
    background-color: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(147, 112, 219, 0.1);
}

.schedule-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.schedule-item {
    background: linear-gradient(135deg, #f9f0ff, #f5e6ff);
    border-radius: 15px;
    padding: 25px;
    border-left: 5px solid #9370db;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(147, 112, 219, 0.2);
}

.class-day {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #db34a6;
    margin-bottom: 5px;
}

.class-time {
    font-size: 18px;
    font-weight: 600;
    color: #9370db;
    margin-bottom: 10px;
}

.class-type {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}

.class-instructor {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.schedule-note {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 14px;
}

/* CTA szekció */
.cta-section {
    background: linear-gradient(135deg, #ff69b4, #9370db);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.cta-section::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn {
    background-color: white;
    color: #ff69b4;
    font-weight: 700;
}

.cta-section .btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Lábléc */
.main-footer {
    background-color: #2a0a4a;
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    border-radius: 50%;
}

.footer-logo-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    margin-bottom: 5px;
}

.footer-logo-text p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact h4,
.footer-social h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffb6c1;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff69b4;
    transform: translateY(-3px);
}

.admin-link a {
    color: #ffb6c1;
    text-decoration: none;
    font-size: 14px;
}

.admin-link a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.8;
}

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

/* Zene ikon */
.music-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff69b4, #9370db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(147, 112, 219, 0.4);
    z-index: 99;
    transition: all 0.3s ease;
}

.music-icon:hover {
    transform: scale(1.1);
}

.music-icon.playing {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Reszponzív design */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

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

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px;
        border-radius: 0 0 20px 20px;
        z-index: 99;
    }

    .nav-list.show {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 30px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .schedule-container {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 30px;
    }
}

/* Korábbi CSS tartalmak itt maradnak... */

/* Almenü stílusok */
.nav-item.has-children {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item.has-children:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.submenu a:hover {
    background-color: #f9f0ff;
    color: #9370db;
}

.submenu li:last-child a {
    border-bottom: none;
}

/* Mobil almenü kezelés */
@media (max-width: 768px) {
    .nav-item.has-children > a::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .nav-item.has-children.submenu-open > a::after {
        transform: rotate(180deg);
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: #f9f9f9;
        border-radius: 0;
    }

    .nav-item.has-children.submenu-open .submenu {
        max-height: 500px;
    }

    .submenu a {
        padding-left: 40px;
    }
}

/* Oldal tartalom stílusok */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 245, 0.9));
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(147, 112, 219, 0.1);
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #9370db;
    margin-bottom: 15px;
}

.page-excerpt {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.content-block {
    margin-bottom: 40px;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(147, 112, 219, 0.1);
}

.content-block h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #ff69b4;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.block-content {
    line-height: 1.8;
    color: #444;
}

.block-content p {
    margin-bottom: 15px;
}

.block-content ul, .block-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.block-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 15px 0;
}

.block-image {
    text-align: center;
}

.block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-block {
    background: linear-gradient(135deg, #ffb6c1, #ff69b4);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 15px;
}

.cta-block h2 {
    color: white;
    border-bottom: none;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Admin link stílus */
.admin-link {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-link a {
    color: #ffb6c1;
    text-decoration: none;
    font-weight: 600;
}

.admin-link a:hover {
    text-decoration: underline;
}

/* Korábbi CSS tartalmak... */

/* Adatbázis információ */
.database-info {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(147, 112, 219, 0.1);
    border-radius: 10px;
    border-left: 4px solid #9370db;
}

.database-info p {
    margin: 0;
    font-size: 14px;
}

.database-info a {
    color: #9370db;
    text-decoration: none;
    font-weight: 600;
}

.database-info a:hover {
    text-decoration: underline;
}

/* Kapcsolat szekció */
.contact-section {
    background-color: white;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(147, 112, 219, 0.1);
}

.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3, .contact-form h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #9370db;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.contact-info .social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.contact-info .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #9370db;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info .social-icons a:hover {
    background-color: #ff69b4;
    transform: translateY(-3px);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9370db;
    box-shadow: 0 0 0 3px rgba(147, 112, 219, 0.2);
}

.contact-form button {
    align-self: flex-start;
    margin-top: 10px;
}

/* Reszponzív design kiegészítések */
@media (max-width: 768px) {
    .database-info {
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
    }
}
