/* 
* Gefajo-woviro - Main Stylesheet
* Colors:
* - Primary: #14453D (dark green)
* - Accent: #FFD447 (bright yellow)
* - Background: #FEFAF6 (milk)
* - Text: #2D2D2D (dark gray)
* - Elements: #C2F970 (light green)
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2D2D2D;
    background-color: #FEFAF6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #14453D;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFD447;
}

ul {
    list-style: none;
}

button, .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #14453D;
    color: #FEFAF6;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #FFD447;
    color: #14453D;
    transform: translateY(-2px);
}

.section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    color: #14453D;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

/* Header Styles */
.main-header {
    background-color: #FEFAF6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    font-weight: 600;
}

/* Hero Section */
.hero {
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 69, 61, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #FEFAF6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    color: #FEFAF6;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-btn {
    background-color: #FFD447;
    color: #14453D;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.hero-btn:hover {
    background-color: #C2F970;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Product Section */
.product-section {
    text-align: center;
}

.product-intro {
    max-width: 800px;
    margin: 0 auto 50px;
}

.product-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Benefits Section */
.benefits-section {
    background-color: #14453D;
    color: #FEFAF6;
}

.benefits-section h2 {
    color: #FEFAF6;
    text-align: center;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    color: #FFD447;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-item h3,
.benefit-item p {
    color: #FEFAF6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Testimonials */
.testimonials {
    text-align: center;
}

.testimonials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    background-color: #FEFAF6;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #14453D;
}

/* How It Works */
.how-it-works {
    background-color: #C2F970;
    text-align: center;
}

.steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    margin: 10px;
    background-color: #FEFAF6;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #14453D;
    color: #FEFAF6;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Products & Pricing */
.products-section {
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background-color: #FEFAF6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.product-info {
    padding: 20px;
}

.product-title {
    margin-bottom: 10px;
}

.product-price {
    font-weight: 700;
    color: #14453D;
    font-size: 1.2rem;
    margin: 15px 0;
}

/* Comparison */
.comparison-section {
    background-color: #FEFAF6;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background-color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #14453D;
    color: #FEFAF6;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.check {
    color: #14453D;
    font-weight: bold;
}

.cross {
    color: #999;
}

/* Order Form */
.order-section {
    background-color: #14453D;
    color: #FEFAF6;
}

.order-section h2 {
    color: #FEFAF6;
    text-align: center;
}

.order-form {
    max-width: 600px;
    margin: 50px auto 0;
    background-color: #FEFAF6;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #2D2D2D;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check input {
    margin-right: 10px;
    margin-top: 5px;
}

.submit-btn {
    background-color: #FFD447;
    color: #14453D;
    font-size: 1.1rem;
    width: 100%;
}

.error-message {
    color: #e74c3c;
    margin-top: 5px;
    font-size: 0.9rem;
}

/* Contact */
.contact-section {
    text-align: center;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: #FEFAF6;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-item a {
    color: #14453D;
    text-decoration: underline;
    font-weight: bold;
}

.contact-icon {
    color: #14453D;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Footer */
.main-footer {
    background-color: #14453D;
    color: #FEFAF6;
    padding: 50px 0 20px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info h3 {
    color: #FEFAF6;
}

.footer-links h4,
.footer-legal h4 {
    color: #FEFAF6;
}

.footer-links ul,
.footer-legal ul {
    margin-top: 15px;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a,
.footer-info a {
    color: #FEFAF6;
    opacity: 1;
    text-decoration: underline;
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-info a:hover {
    opacity: 1;
    color: #FFD447;
}

.footer-bottom {
    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;
    width: 100%;
    background-color: rgba(20, 69, 61, 0.95);
    color: #FEFAF6;
    z-index: 1000;
}

.cookie-popup-inner {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-popup p {
    margin: 0 20px 0 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    align-items: center;
}

.cookie-more {
    color: #FEFAF6;
    margin-right: 15px;
    text-decoration: underline;
}

.cookie-accept {
    background-color: #FFD447;
    color: #14453D;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-header {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .cookie-popup-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-popup p {
        margin: 0 0 20px 0;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero {
        height: 70vh;
    }
}

/* Static styles replacing animations */
.animate-fade-in, .delay-1, .delay-2, .delay-3 {
    opacity: 1;
    transform: translateY(0);
} 