/* Base Styles & Variables */
:root {
    --dark-blue: #1A1A2E;
    --secondary-blue: #16213E;
    --neon-pink: #FF5F6D;
    --neon-orange: #FFC371;
    --text-color: #EAEAEA;
    --transition-speed: 0.3s;
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-blue);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--neon-pink), var(--neon-orange));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

p {
    margin-bottom: 15px;
}

button, .button {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-orange));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 4px 15px rgba(255, 95, 109, 0.4);
}

button:hover, .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 95, 109, 0.6);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

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

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

.animate-delay-3 {
    animation-delay: 0.6s;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 46, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 3s infinite;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
}

.main-nav a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--neon-pink), var(--neon-orange));
    transition: width var(--transition-speed);
}

.main-nav a:hover {
    color: var(--neon-pink);
}

.main-nav a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-button span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all var(--transition-speed);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-blue);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/VZG17f.jpg') no-repeat center center/cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* About Section */
.about {
    background-color: var(--dark-blue);
    position: relative;
    padding-top: 100px; /* Add padding to prevent header overlap */
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 1 1 500px;
}

.about-image {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 10px;
    max-height: 300px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-benefits {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    background-color: var(--secondary-blue);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    color: var(--neon-pink);
    margin-bottom: 10px;
}

/* Services Section */
.services {
    background-color: var(--secondary-blue);
    padding-top: 100px; /* Add padding to prevent header overlap */
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: var(--dark-blue);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-price {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-orange));
    color: white;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 15px;
}

/* Why Choose Us Section */
.why-us {
    background-color: var(--dark-blue);
    padding-top: 100px; /* Add padding to prevent header overlap */
}

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

.reason-item {
    text-align: center;
    padding: 30px;
    background-color: var(--secondary-blue);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

.reason-item:hover {
    transform: translateY(-5px);
}

.reason-icon {
    display: inline-flex;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-orange));
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

/* Team Section */
.team {
    background-color: var(--secondary-blue);
    padding-top: 100px; /* Add padding to prevent header overlap */
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: var(--dark-blue);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-speed);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 5px;
}

.member-role {
    color: var(--neon-pink);
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--dark-blue);
    padding-top: 100px; /* Add padding to prevent header overlap */
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: var(--secondary-blue);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: """;
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 5rem;
    color: var(--neon-pink);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--neon-pink);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
}

/* Contact Section */
.contact {
    background-color: var(--secondary-blue);
    position: relative;
    padding-top: 100px; /* Add padding to prevent header overlap */
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/FRzQmq.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form-container {
    flex: 1 1 500px;
    background-color: rgba(26, 26, 46, 0.8);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info {
    flex: 1 1 400px;
}

.contact-info h3 {
    color: var(--neon-pink);
}

.contact-method {
    margin-bottom: 20px;
}

.map-container {
    height: 300px;
    background: url('./img/veyCus.jpg') no-repeat center center/cover;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #000000;
    font-size: 1rem;
    transition: all var(--transition-speed);
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-pink);
    background-color: rgba(255, 255, 255, 0.15);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='%23EAEAEA'%3E%3Cpath d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 30px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 5px;
    accent-color: var(--neon-pink);
}

/* Footer */
footer {
    background-color: var(--secondary-blue);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info, .footer-description, .footer-links {
    flex: 1 1 300px;
}

.footer-info h3, .footer-links h3 {
    color: var(--neon-pink);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--neon-pink);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--dark-blue);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

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

.cookie-content p {
    margin-bottom: 0;
}

.cookie-content button {
    flex-shrink: 0;
}

/* Policies Pages */
.policy-section {
    min-height: 70vh;
    padding-top: 150px;
    padding-bottom: 80px;
}

.policy-content {
    background-color: var(--secondary-blue);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.policy-content h2 {
    text-align: center; /* Center main headings on policy pages */
    margin-bottom: 30px;
}

.policy-content h3 {
    color: var(--neon-pink);
    margin-top: 40px;
    margin-bottom: 15px;
}

/* Danke Page */
.thank-you-section {
    min-height: 70vh;
    padding-top: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-blue);
}

.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background-color: var(--secondary-blue);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.thank-you-icon {
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.thank-you-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--neon-pink);
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thank-you-container p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.thank-you-details {
    margin: 30px 0;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
}

.thank-you-details p {
    margin-bottom: 10px;
}

.thank-you-container .button {
    margin-top: 20px;
}

/* Add fixed scroll-margin-top to sections with IDs to prevent header overlap */
section[id] {
    scroll-margin-top: 100px;
}

/* Media Queries */
@media screen and (max-width: 991px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media screen and (max-width: 768px) {
    .menu-button {
        display: flex;
        z-index: 1100;
    }
    
    .menu-toggle {
        position: absolute;
        opacity: 0;
        z-index: -1;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--dark-blue);
        padding: 80px 30px 30px;
        transition: right var(--transition-speed);
        z-index: 1050;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav a {
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .menu-toggle:checked ~ .menu-button span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle:checked ~ .menu-button span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-button span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        width: 95%;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .policy-content {
        padding: 25px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .thank-you-container {
        padding: 30px;
    }
}