/* 
   Main Stylesheet for domain.com
   Color Palette:
   - Background: #3D1E6D (deep purple/eggplant)
   - Accent: #FFE92C (bright yellow)
   - Text: #F6F6F6 (off white)
   - Gradient: #3D1E6D to #191970
   - Borders: #FFE92C
*/

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

section[id] {
    scroll-margin-top: 80px;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #F6F6F6;
    background-color: #3D1E6D;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    color: #FFE92C;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: #FFE92C;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #FFE92C;
    margin: 15px auto;
}

/* Buttons */
.cta-button, .submit-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FFE92C;
    color: #3D1E6D;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover, .submit-button:hover {
    background-color: #fff;
    color: #3D1E6D;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Layout */
.section {
    padding: 80px 0;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to right, #3D1E6D, #191970);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 70px;
    display: flex;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #FFE92C;
}

/* CSS-only Hamburger Menu */
.menu-container {
    position: relative;
    margin-left: auto;
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFE92C;
    margin: 5px 0;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav ul li a {
    color: #F6F6F6;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.main-nav ul li a:hover {
    color: #FFE92C;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    background-image: url('../img/MuNae.jpg');
    background-size: cover;
    background-position: center;
    color: #F6F6F6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 30, 109, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    margin-bottom: 20px;
    color: #FFE92C;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom, #3D1E6D, #191970);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(25, 25, 112, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: #FFE92C;
}

.service-content ul {
    margin-top: 10px;
    margin-left: 20px;
}

.service-content ul li {
    margin-bottom: 8px;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 20px;
    background: rgba(25, 25, 112, 0.3);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    margin: 0 auto 15px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon img {
    max-width: 100%;
    max-height: 100%;
}

.advantage-item h3 {
    color: #FFE92C;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(to bottom, #191970, #3D1E6D);
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background: rgba(61, 30, 109, 0.5);
    border-radius: 10px;
    padding: 30px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: #FFE92C;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 233, 44, 0.3);
    background: rgba(25, 25, 112, 0.2);
    border-radius: 5px;
    color: #F6F6F6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFE92C;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-consent {
    margin-top: 20px;
}

.checkbox-consent label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.checkbox-consent input[type="checkbox"] {
    margin-right: 10px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-map {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-map iframe {
    border-radius: 10px;
}

.form-errors {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 0, 0, 0.2);
    border-radius: 5px;
    border-left: 3px solid #ff0000;
}

.error {
    color: #ffcccc;
    margin-bottom: 5px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(25, 25, 112, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    padding: 15px 20px;
    display: block;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-toggle:checked ~ .faq-question::after {
    content: '-';
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, #3D1E6D, #191970);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFE92C;
    margin-bottom: 15px;
}

footer h3 {
    color: #FFE92C;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 233, 44, 0.2);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(25, 25, 112, 0.9);
    padding: 15px 0;
    z-index: 1001;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.cookie-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#accept-cookies {
    padding: 8px 20px;
    background-color: #FFE92C;
    color: #3D1E6D;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

#accept-cookies:hover {
    background-color: #fff;
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px;
}

.policy-box {
    background: rgba(25, 25, 112, 0.3);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid #FFE92C;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.policy-box h1 {
    text-align: center;
    color: #FFE92C;
    margin-bottom: 30px;
}

.policy-box h2 {
    color: #FFE92C;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Thank You Page */
.merci-container {
    height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.merci-box {
    max-width: 600px;
    margin-top: 7rem;
    background: rgba(25, 25, 112, 0.3);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid #FFE92C;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.merci-box h1 {
    color: #FFE92C;
    margin-bottom: 20px;
}

.merci-box p {
    margin-bottom: 30px;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .menu-button {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 70px;
        right: -700%;
        width: 250px;
        background: linear-gradient(to bottom, #3D1E6D, #191970);
        padding: 20px;
        border-radius: 0 0 0 10px;
        transition: right 0.3s ease;
        box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .menu-toggle:checked ~ .menu-button .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle:checked ~ .menu-button .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-button .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .service-card, .advantage-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-box {
        padding: 20px;
    }
} 