@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Goldman', cursive;
    line-height: 1.6;
    color: #333;
    background: #E5CFEA;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px;
    border: 1px solid #C99C68;
    background: #F4F4F4;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-family: 'Goldman', cursive;
}

.cookie-btn.accept {
    border-radius: 10px;
    background: #FFB700;
    color: white;
}

.cookie-btn.decline {
    border-radius: 10px;
    background: rgba(28, 28, 28, 0.05);
    color: #000;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.41);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
}

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

.logo {
    font-family: 'Krona One', cursive;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}


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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FFD700;
}

/* @media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
} */

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.41);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
}

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

.logo {
    font-family: 'Krona One', cursive;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 576px) {
    .logo {
        font-size: 20px;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #FFD700;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #E5CFEA;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 1.5rem;
        color: #000;
        padding: 10px;
    }
}

.content {
    padding: 50px 20px;
    text-align: center;
}

.content h1 {
    color: #333;
    margin-bottom: 20px;
}

.content p {
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    color: white;
    background: linear-gradient(180deg, #947092 0%, #E5CFEA 100%);
}

.hero-title {
    font-family: "Goldman", sans-serif;
    font-size: 3rem;
    margin-bottom: 40px;
    color: #FFB700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-wrap: balance;
    text-transform: uppercase;
    line-height: 1.3;
}

.hero-visual {
    position: relative;
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.hero-phone {
    max-width: 475px;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: ;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-icons .icon {
    position: absolute;
    width: 50px;
    height: 50px;
    animation: float 3s ease-in-out infinite;
}

.icon.music { top: 10%; left: 10%; animation-delay: 0s; }
.icon.heart { top: 20%; right: 15%; animation-delay: 0.5s; }
.icon.instagram { top: 60%; left: 5%; animation-delay: 1s; }
.icon.video { top: 70%; right: 20%; animation-delay: 1.5s; }
.icon.edit { top: 40%; right: 5%; animation-delay: 2s; }

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

.hero-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    color: #000;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    color: #000;
}

.why-choose h2 {
    font-family: 'Krona One', cursive;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #E433B8;
}

.why-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.why-text {
    flex: 1;
}

.why-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.why-image {
    flex: 1;
    text-align: center;
}

.why-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    width: fit-content;
    margin: 0 auto;
    border-radius: 20px;
    background: #FFB700;
    color: #333;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-family: 'Goldman', cursive;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    backdrop-filter: blur(10px);
    padding: 80px 0;
    color: #000;
}

.about h2 {
    font-family: 'Krona One', cursive;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #E433B8;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Features Section */
.features {
    background: linear-gradient(180deg, #B0E9FF 0%, #00A6E8 100%);
    padding: 80px 0;
    color: #000;
}

.features h2 {
    font-family: 'Krona One', cursive;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #3A3A3A;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-card img {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Krona One', cursive;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #3A3A3A;
}

.feature-card p {
    line-height: 1.6;
    opacity: 0.9;
}

.features-highlight {
    margin-top: 60px;
}

.features-highlight h3 {
    font-family: 'Krona One', cursive;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #FFD700;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.highlight-text {
    flex: 1;
}

.highlight-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.highlight-image {
    flex: 1;
    text-align: center;
}

.highlight-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    color: #000;
}

.testimonials h2 {
    font-family: 'Krona One', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #FFD700;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial h4 {
    font-family: 'Krona One', cursive;
    color: #333;
    margin-bottom: 15px;
}

.testimonial p {
    line-height: 1.6;
    opacity: 0.8;
    color: #333;
}

/* Contact Section */
.contact {
    backdrop-filter: blur(10px);
    padding: 80px 0;
    color: #000;
    text-align: center;
}

.contact h2 {
    font-family: 'Krona One', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #3A3A3A;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #3A3A3A;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(10px);
    color: #000;
    font-size: 1rem;
    font-family: 'Goldman', cursive;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus {
    outline: 2px solid #FFD700;
    background: rgba(255, 255, 255, 0.2);
}

.submit-button {
    background: #FF9788;
    color: #333;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-family: 'Goldman', cursive;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #0C6FFF;
    color: white;
    padding: 30px 0;
    text-align: center;
}

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

.footer-links {
    display: flex;
    gap: 20px;
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}


.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .why-content {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-content {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-icons .icon {
        width: 30px;
        height: 30px;
    }
    
    .hero-phone {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .why-choose h2,
    .about h2,
    .features h2,
    .testimonials h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-card,
    .testimonial {
        padding: 20px;
    }
    
    .cookie-popup {
        left: 20px;
        right: 20px;
        transform: none;
        max-width: none;
    }
}

.bg__wrapper {
    background: #00DDE4;
}