/* 
 * Nuyori-Wakuse - Main Stylesheet
 * Color Palette:
 * - Primary Background: #D3F4C9 (pastel green)
 * - Accent: #8B1E3F (berry)
 * - Secondary: #2D3A59 (deep blueberry)
 * - Text: #4B3621 (natural brown)
 * - Section Background: #F9FBE7 (lemon white)
 */

/* === Reset & Base Styles === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #4B3621;
    background-color: #F9FBE7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #8B1E3F;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover, a:focus {
    color: #2D3A59;
}

a:not(.btn):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #8B1E3F;
    transition: width 0.3s ease;
}

a:not(.btn):hover:after, a:not(.btn):focus:after {
    width: 100%;
}

ul {
    list-style-type: none;
}

.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;
    line-height: 1.3;
    color: #4B3621;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #8B1E3F;
    border-radius: 3px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-btn {
    background-color: #8B1E3F;
    color: #fff;
}

.primary-btn:hover, .primary-btn:focus {
    background-color: #6e1832;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 30, 63, 0.3);
}

.secondary-btn {
    background-color: transparent;
    border-color: #8B1E3F;
    color: #8B1E3F;
}

.secondary-btn:hover, .secondary-btn:focus {
    background-color: #8B1E3F;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 30, 63, 0.3);
}

.cookie-btn {
    background-color: #2D3A59;
    color: #fff;
    padding: 8px 16px;
}

.cookie-btn:hover, .cookie-btn:focus {
    background-color: #1d2539;
}

.nav-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* === Header & Navigation === */
.site-header {
    background-color: #D3F4C9;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
}

.main-nav .nav-list li {
    margin-left: 30px;
}

.main-nav .nav-list a {
    font-weight: 500;
}

.menu-toggle, .menu-icon {
    display: none;
}

/* === Hero Section === */
.hero {
    background-color: #D3F4C9;
    background-image: url('../img/BJWRRT.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
    padding: 120px 0;
    text-align: center;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(211, 244, 201, 0.8);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #4B3621;
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out;
}

.hero .btn {
    animation: fadeIn 1.5s ease-out;
}

/* === About Section === */
.about {
    background-color: #F9FBE7;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefits {
    margin-top: 30px;
}

.benefits li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B1E3F;
    font-weight: bold;
}

/* === Benefits Section === */
.benefits {
    background-color: #D3F4C9;
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.benefit-card h3, .benefit-card p {
    padding: 0 20px;
}

.benefit-card h3 {
    margin-top: 20px;
    color: #8B1E3F;
}

.benefit-card p {
    padding-bottom: 20px;
}

/* === Packages Section === */
.packages {
    background-color: #F9FBE7;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #8B1E3F;
    z-index: -1;
}

.package-card h3 {
    color: #8B1E3F;
    margin-bottom: 10px;
}

.package-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #2D3A59;
    margin-bottom: 20px;
}

.package-card ul {
    margin-bottom: 30px;
    text-align: left;
}

.package-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.package-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B1E3F;
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid #8B1E3F;
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-card.featured:before {
    height: 8px;
}

/* === Testimonials Section === */
.testimonials {
    background-color: #D3F4C9;
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 4rem;
    color: #D3F4C9;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.6;
}

.testimonial p {
    position: relative;
    z-index: 1;
}

.testimonial .client {
    font-weight: bold;
    color: #8B1E3F;
    text-align: right;
    margin-bottom: 0;
}

/* === Order Form Section === */
.order {
    background-color: #F9FBE7;
}

.order-form {
    background-color: #D3F4C9;
    border-radius: 10px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #c1e6b5;
    border-radius: 30px;
    background-color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B1E3F;
    box-shadow: 0 0 0 3px rgba(139, 30, 63, 0.2);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.order-form button {
    width: 100%;
    margin-top: 10px;
}

/* === FAQ Section === */
.faq {
    background-color: #D3F4C9;
    padding: 100px 0;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-toggle {
    display: none;
}

.accordion-title {
    padding: 20px;
    display: block;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.accordion-title:after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    color: #8B1E3F;
    transition: transform 0.3s ease;
}

.accordion-toggle:checked + .accordion-title {
    background-color: #f0f9ed;
}

.accordion-toggle:checked + .accordion-title:after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-toggle:checked ~ .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 20px 20px;
}

/* === Eco Mission Section === */
.eco-mission {
    background-color: #F9FBE7;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

/* === Footer === */
.site-footer {
    background-color: #2D3A59;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.tagline {
    font-style: italic;
    color: #D3F4C9;
}

.footer-contact h3,
.footer-links h3 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3:after,
.footer-links h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #8B1E3F;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #D3F4C9;
}

.footer-links a:hover, .footer-links a:focus {
    color: #fff;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(45, 58, 89, 0.95);
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-banner p {
    margin: 0;
    padding-right: 20px;
}

.cookie-banner a {
    color: #D3F4C9;
}

/* === Animations === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Media Queries === */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .thank-you {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .site-header {
        position: static;
    }
    
    .menu-icon {
        display: block;
        cursor: pointer;
    }
    
    .menu-icon span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #4B3621;
        margin: 5px 0;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #D3F4C9;
        flex-direction: column;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .menu-toggle:checked ~ .nav-list {
        max-height: 300px;
    }
    
    .nav-list li {
        margin: 10px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner p {
        margin-bottom: 15px;
        padding-right: 0;
    }
    
    .thank-you {
        padding: 80px 0;
    }
    
    .thank-you-content {
        padding: 30px 20px;
    }
    
    .thank-you h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .benefits, .testimonials, .faq {
        padding: 80px 0;
    }
    
    .order-form {
        padding: 30px 20px;
    }
    
    .thank-you {
        padding: 60px 0;
    }
}

/* === Thank You Page === */
.thank-you {
    background-color: #D3F4C9;
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.thank-you h1 {
    color: #8B1E3F;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.thank-you p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-out;
}

.thank-you-actions {
    margin-top: 40px;
    animation: fadeInUp 2s ease-out;
} 