/* Global Styles */
:root {
    --bg-primary: #f6f2ff;
    --accent-purple: #9c27b0;
    --accent-pink: #ff4081;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-section: #fce4ec;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-pink);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: var(--text-light);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
    color: var(--text-light);
}

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--accent-purple);
}

.section-title h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    display: block;
    width: 70%;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    margin: 10px auto 0;
}

/* Header Styles */
.site-header {
    background-color: var(--bg-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-purple);
    text-transform: lowercase;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 20px;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--accent-purple);
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-button span {
    height: 3px;
    background-color: var(--accent-purple);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background-color: var(--bg-light);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background-color: var(--bg-primary);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    flex: 1 1 300px;
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 20px;
}

/* Services Section */
.services {
    background-color: var(--bg-section);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    flex: 1 1 300px;
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Process Section */
.process {
    background-color: var(--bg-light);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.process-step {
    flex: 1 1 250px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-section);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    flex: 1 1 300px;
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

details {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

summary {
    padding: 15px;
    background-color: var(--bg-primary);
    cursor: pointer;
    font-weight: 500;
    position: relative;
    outline: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '-';
}

details p {
    padding: 15px;
}

/* Order Form Section */
.order {
    background-color: var(--bg-section);
}

.order-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info,
.footer-contact,
.footer-links {
    flex: 1 1 250px;
}

.footer-info h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-pink);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-contact a, .footer-links a {
    color: var(--text-light);
}

.footer-contact a:hover, .footer-links a:hover {
    color: var(--accent-pink);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-light);
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    justify-content: center;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}



@media (max-width: 768px) {
    .cookie-popup {
        padding: 10px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-content .btn {
        width: 100%;
    }
}

/* Policy Pages */
.policy-page {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    margin: 30px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-page h1 {
    color: var(--accent-purple);
    margin-bottom: 30px;
}

.policy-page h2 {
    color: var(--accent-purple);
    margin-top: 40px;
    margin-bottom: 15px;
}

.policy-page p {
    margin-bottom: 15px;
}

.policy-contact-info {
    margin-top: 40px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(156, 39, 176, 0.05);
    border: 1px solid rgba(156, 39, 176, 0.1);
}

.policy-contact-info h3 {
    color: var(--accent-purple);
    margin-bottom: 15px;
}

/* Extra Pages */
.page-content {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    margin: 30px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.blog-coming-soon, .tips-content {
    margin-top: 40px;
    text-align: left;
}

.blog-coming-soon h2, .tips-content h2 {
    color: var(--accent-purple);
    margin-bottom: 20px;
}

.blog-coming-soon ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.blog-coming-soon li {
    margin-bottom: 10px;
}

.tip-item {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(156, 39, 176, 0.05);
}

.tip-item h3 {
    color: var(--accent-purple);
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 40px 20px;
}

.thank-you h1 {
    color: var(--accent-purple);
    margin-bottom: 20px;
}

.thank-you p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Media Queries */
@media (max-width: 768px) {
    .menu-button {
        display: flex;
    }

    .menu-toggle {
        position: absolute;
        left: -9999px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }

    .main-nav li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle:checked ~ .main-nav {
        max-height: 500px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
