/* 
 * Popoxu-Yukodi Styles
 * Main color palette:
 * - Main: Deep mint-blue-green (#2C7365)
 * - Secondary: Powder yellow (#F4D35E)
 * - Accents: Coral pink (#EE6C4D), saturated indigo (#2B2D42), light sandy (#EDE6D6)
 */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #2C7365;
    transition: color 0.3s ease;
}

a:hover {
    color: #EE6C4D;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: #2B2D42;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F4D35E;
    border-radius: 2px;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 5rem 0;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #2C7365;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

/* Navigation */
.main-nav {
    position: relative;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu a {
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #EE6C4D;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: #2C7365;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: #EE6C4D;
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2C7365 0%, #1b5048 100%);
    color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/EcMm9e.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.cta-button {
    display: inline-block;
    background-color: #F4D35E;
    color: #2B2D42;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #2B2D42;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #EDE6D6;
    padding: 6rem 0;
}

.benefits-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 3rem;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px 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-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: #2C7365;
}

/* Gallery Section */
.gallery-section {
    background-color: #fff;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 115, 101, 0.8);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Recipe Section */
.recipes-section {
    background-color: #f5f5f5;
}

.recipes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 3rem;
}

.recipe-card {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-10px);
}

.recipe-image {
    height: 200px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

.recipe-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.recipe-features {
    margin: 1rem 0;
    flex: 1;
}

.recipe-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2C7365;
}

.buy-button {
    background-color: #F4D35E;
    color: #2B2D42;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #EE6C4D;
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #2B2D42;
    color: white;
}

.testimonials-section h2 {
    color: white;
}

.testimonials-section h2::after {
    background-color: #EE6C4D;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-card {
    flex: 1 1 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
}

.testimonial-author {
    font-weight: bold;
    color: #F4D35E;
}

/* FAQ Section */
.faq-section {
    background-color: #EDE6D6;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    background-color: #2C7365;
    color: white;
    padding: 1rem 2rem;
    cursor: pointer;
    font-weight: bold;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.faq-item:hover .faq-question {
    background-color: #1b5048;
}

.faq-answer {
    padding: 1.5rem 2rem;
    display: none;
}

.faq-item:target .faq-answer,
.faq-item:hover .faq-answer {
    display: block;
    animation: fadeIn 0.5s ease;
}

.faq-item:target .faq-question::after,
.faq-item:hover .faq-question::after {
    content: '-';
}

/* Order Form Section */
.order-section {
    background-color: #fff;
}

.order-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2B2D42;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2C7365;
}

.package-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.package-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.package-option:hover {
    border-color: #2C7365;
}

.package-option input {
    margin-right: 10px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 0.3rem;
}

.submit-button {
    background-color: #2C7365;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 2rem;
    font-size: 1rem;
}

.submit-button:hover {
    background-color: #EE6C4D;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2B2D42;
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideUp 0.5s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content form {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-button {
    background-color: #F4D35E;
    color: #2B2D42;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-button:hover {
    background-color: #EE6C4D;
    color: white;
}

.cookie-link {
    color: #F4D35E;
}

.cookie-link:hover {
    color: #EE6C4D;
}

/* Footer Styles */
.site-footer {
    background-color: #2B2D42;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #EE6C4D;
}

.company-description {
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: #F4D35E;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-credits {
    margin-top: 0.5rem;
}

/* Thank You Page */
.thank-you-section {
    min-height: 70vh;
    padding: 5rem 0;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #2C7365;
    color: white;
    border-radius: 50%;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.next-steps, .contact-info {
    text-align: left;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.return-button {
    display: inline-block;
    background-color: #2C7365;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-top: 1.5rem;
}

.return-button:hover {
    background-color: #F4D35E;
    color: #2B2D42;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 115, 101, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(44, 115, 101, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(44, 115, 101, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .menu-icon {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 24px;
        position: relative;
        z-index: 110;
    }
    
    .menu-line {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #2C7365;
        margin: 5px 0;
        transition: 0.4s;
    }
    
    .menu-toggle:checked + .menu-icon .menu-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle:checked + .menu-icon .menu-line:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked + .menu-icon .menu-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        right: 0;
    }
    
    .nav-menu li {
        margin-left: 0;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s forwards;
    }
    
    .menu-toggle:checked ~ .nav-menu li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .menu-toggle:checked ~ .nav-menu li:nth-child(1) {
        animation-delay: 0.1s;
    }
    .menu-toggle:checked ~ .nav-menu li:nth-child(2) {
        animation-delay: 0.2s;
    }
    .menu-toggle:checked ~ .nav-menu li:nth-child(3) {
        animation-delay: 0.3s;
    }
    .menu-toggle:checked ~ .nav-menu li:nth-child(4) {
        animation-delay: 0.4s;
    }
    .menu-toggle:checked ~ .nav-menu li:nth-child(5) {
        animation-delay: 0.5s;
    }
    .menu-toggle:checked ~ .nav-menu li:nth-child(6) {
        animation-delay: 0.6s;
    }
    .menu-toggle:checked ~ .nav-menu li:nth-child(7) {
        animation-delay: 0.7s;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .benefits-container,
    .recipes-container,
    .testimonials-container {
        gap: 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .benefit-card {
        min-width: 100%;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .package-selection {
        grid-template-columns: 1fr;
    }
    
    .thank-you-content {
        padding: 2rem 1.5rem;
    }
} 