/* 
* huheho-dikezi - Style CSS
* Colors:
* - Dark Plum: #2E003E
* - Sandy Gold: #D1B166
* - Light Mint: #B2FFE7
* - White: #FFFFFF
* - Graphite: #222222
*/

/* Base Styles */
:root {
    --dark-plum: #2E003E;
    --sandy-gold: #D1B166;
    --light-mint: #B2FFE7;
    --white: #FFFFFF;
    --graphite: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--graphite);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    color: var(--dark-plum);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--dark-plum);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--sandy-gold);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--sandy-gold);
    margin: 0.5rem auto;
}

/* Wave Dividers */
.wave-divider {
    height: 100px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.wave-top {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 100px));
}

.wave-bottom {
    clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 100%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--dark-plum);
    color: var(--white);
    border: 2px solid var(--dark-plum);
}

.btn-primary:hover {
    background: transparent;
    color: var(--dark-plum);
}

.btn-secondary {
    background: var(--sandy-gold);
    color: var(--white);
    border: 2px solid var(--sandy-gold);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--sandy-gold);
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--dark-plum);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    background-color: var(--light-mint);
    background-image: linear-gradient(rgba(46, 0, 62, 0.7), rgba(46, 0, 62, 0.7)), url('./img/xXbdmD.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.about-text {
    flex: 1;
}

/* Benefits Section */
.benefits {
    background-color: var(--light-mint);
    position: relative;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--sandy-gold);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
    text-align: center;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.testimonial-slide {
    padding: 2rem;
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark-plum);
    margin-top: 1rem;
}

/* Pricing Section */
.pricing {
    background-color: var(--light-mint);
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-plan {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-5px);
}

.plan-name {
    color: var(--dark-plum);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    color: var(--sandy-gold);
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(46, 0, 62, 0.1);
}

/* Order Form Section */
.order-form {
    background-color: var(--white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--sandy-gold);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-check input {
    margin-top: 0.3rem;
    margin-right: 0.5rem;
}

.form-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Tips Section */
.tips {
    background-color: var(--light-mint);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tip-title {
    color: var(--dark-plum);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.faq-question {
    font-weight: 600;
    color: var(--dark-plum);
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.faq-answer {
    margin-top: 0.5rem;
}

/* Footer */
.main-footer {
    background-color: var(--dark-plum);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-grid h3 {
    color: var(--sandy-gold);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
}

.footer-links a:hover {
    color: var(--sandy-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-plum);
    color: var(--white);
    padding: 1rem 0;
    z-index: 9999;
}

.cookie-notice .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-notice a {
    color: var(--sandy-gold);
}

.cookie-notice a:hover {
    text-decoration: underline;
}

/* Thank You Page */
.thank-you {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0;
    margin: 0;
}

.thank-you-content {
    max-width: 600px;
    padding: 4rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 3rem;
    color: var(--white);
    background-color: var(--sandy-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thank-you h1 {
    margin-bottom: 1.5rem;
    color: var(--dark-plum);
}

.thank-you p {
    margin-bottom: 1.5rem;
    color: var(--graphite);
}

.thank-you .btn {
    margin-top: 1rem;
    display: inline-block;
}

/* Policy Pages */
.policy-page {
    padding: 8rem 0 5rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 8rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cookie-notice .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 0.7rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .thank-you-content {
        padding: 2rem;
    }
    
    .thank-you-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 2rem;
    }
} 