/* 
 * Yuzova-Nojepi CSS Styles
 * Colors:
 * - Main: #046582 (Deep Azure)
 * - Accent: #9DC88D (Olive Lime)
 * - Background: #FFF4E0 (Pastel Peach)
 * - Secondary Text: #6C757D (Gray-Green)
 * - CTA Buttons: #E94F37 (Dark Coral)
 */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFF4E0;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    color: #046582;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #046582;
    transition: color 0.3s, transform 0.3s;
}

a:hover {
    color: #E94F37;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
    position: relative;
}

/* 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: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta {
    background-color: #E94F37;
    color: white;
}

.btn-cta:hover {
    background-color: #d43e27;
    color: white;
}

.btn-accent {
    background-color: #9DC88D;
    color: #046582;
}

.btn-accent:hover {
    background-color: #8ab97b;
}

/* Header & Navigation */
.site-header {
    background-color: #FFF4E0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    padding: 8px 12px;
    position: relative;
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #9DC88D;
    transition: width 0.3s;
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(4, 101, 130, 0.05) 0%, rgba(255, 244, 224, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #6C757D;
    animation: fadeInUp 1.2s ease-out;
}

.hero-cta {
    animation: fadeInUp 1.4s ease-out;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    z-index: 1;
    animation: fadeInRight 1.5s ease-out;
}

/* About Section */
.about {
    background-color: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content {
    animation: fadeIn 1s ease-out;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: scaleIn 1s ease-out;
}

/* Benefits Section */
.benefits {
    background-color: #046582;
    color: #FFF4E0;
}

.benefits h2 {
    color: #FFF4E0;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    fill: #9DC88D;
}

.benefit-card h3 {
    color: #FFF4E0;
}

.benefit-card p {
    color: rgba(255, 244, 224, 0.8);
}

/* Products Section */
.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.products-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    margin-bottom: 0.5rem;
}

.product-content p {
    color: #6C757D;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
    background-color: #f8f9fa;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.price-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-header {
    padding: 2rem;
    background-color: #046582;
    color: #FFF4E0;
}

.price-content {
    padding: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #046582;
    margin: 1rem 0;
}

.price-features {
    margin: 1.5rem 0;
    text-align: left;
}

.price-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9DC88D;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-content {
    position: relative;
    padding-bottom: 2rem;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: rgba(4, 101, 130, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #6C757D;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background-color: #f8f9fa;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #046582;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #6C757D;
}

/* Order Form Section */
.order-form {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.order-form::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: url('./img/6R8eSc.jpg') no-repeat center/cover;
    opacity: 0.1;
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.order-form h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #9DC88D;
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input {
    margin-top: 0.3rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info ul {
    margin-bottom: 2rem;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.site-footer {
    background-color: #046582;
    color: #FFF4E0;
    padding: 4rem 0 2rem;
    position: relative;
}

.wave-divider {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    width: 100%;
    height: 120px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.company-desc {
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-contact h3,
.footer-links h3 {
    color: #FFF4E0;
    margin-bottom: 1.2rem;
}

.footer-contact ul li,
.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #FFF4E0;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: #9DC88D;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 244, 224, 0.2);
}

.copyright p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background-color: #046582;
    color: #FFF4E0;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: slideInUp 0.5s ease-out;
}

.cookie-content p {
    margin-bottom: 1rem;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-link {
    color: #9DC88D;
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        width: 50%;
    }
    
    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .site-header {
        position: static; /* Header not sticky on mobile */
    }
    
    .header-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-image {
        display: none;
    }
    
    .benefit-card,
    .product-card,
    .price-card,
    .testimonial-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact ul li,
    .footer-links ul li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .cookie-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Policy Pages Styles */
.policy {
    padding: 60px 0;
    background-color: #FFF4E0;
}

.policy-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.policy h1 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
    color: #046582;
    text-align: center;
}

.policy-date {
    color: #6C757D;
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
}

.policy-section {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(4, 101, 130, 0.1);
    padding-bottom: 1.5rem;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: #046582;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #9DC88D;
    display: inline-block;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    list-style-type: disc;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cookies-table th, 
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e9ecef;
}

.cookies-table th {
    background-color: #046582;
    color: #FFF4E0;
    font-weight: 600;
}

.cookies-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.cookies-table tr:hover {
    background-color: rgba(157, 200, 141, 0.1);
}

@media (max-width: 768px) {
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .policy h1 {
        font-size: 1.8rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .cookies-table th, 
    .cookies-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 1.5rem 1rem;
    }
    
    .policy h1 {
        font-size: 1.5rem;
    }
    
    .cookies-table {
        display: block;
        overflow-x: auto;
    }
} 