/* 
* BylinTea - Main Stylesheet
* Colors:
* - Deep Lavender: #5A3F8C
* - Mint Green: #ADEFD1
* - Graphite Black: #1E1E1E
* - Amber Yellow: #FFC857
* - Tea Leaf Color: #6B8E23
*/

/* Base Styles & Reset */
:root {
    --lavender: #5A3F8C;
    --mint: #ADEFD1;
    --graphite: #1E1E1E;
    --amber: #FFC857;
    --tea-leaf: #6B8E23;
}

* {
    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: var(--graphite);
    background: linear-gradient(135deg, rgba(90, 63, 140, 0.1), rgba(173, 239, 209, 0.2));
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--lavender);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--tea-leaf);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--lavender);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--amber);
    color: var(--graphite);
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(90, 63, 140, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--lavender);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(90, 63, 140, 0.4);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    margin-bottom: 0;
    font-size: 1.8rem;
    color: var(--lavender);
}

nav ul {
    display: flex;
    gap: 20px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('./img/MPkkgo.jpg');
    background-size: cover;
    background-position: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--lavender);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: rgba(173, 239, 209, 0.2);
}

.benefits-title {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: var(--tea-leaf);
}

/* Products Section */
.products {
    padding: 80px 0;
}

.products-title {
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    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-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: var(--lavender);
}

.product-price {
    font-weight: bold;
    color: var(--tea-leaf);
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
    background-color: rgba(90, 63, 140, 0.05);
}

.comparison-title {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-radius: 10px;
    background-color: white;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
}

.comparison-table th {
    background-color: var(--lavender);
    color: white;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(173, 239, 209, 0.2);
}

/* Shipping Section */
.shipping {
    padding: 80px 0;
}

.shipping-title {
    text-align: center;
    margin-bottom: 3rem;
}

.shipping-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.shipping-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.shipping-card h3 {
    color: var(--tea-leaf);
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: rgba(173, 239, 209, 0.2);
}

.reviews-title {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.review-name {
    font-weight: bold;
    color: var(--lavender);
}

/* Certificates Section */
.certificates {
    padding: 80px 0;
}

.certificates-title {
    text-align: center;
    margin-bottom: 3rem;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-items: center;
}

.certificate-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.certificate-card:hover {
    transform: translateY(-5px);
}

.certificate-card img {
    width: 80px;
    margin: 0 auto 15px;
}

/* Order Form */
.order-form {
    padding: 80px 0;
    background-color: rgba(90, 63, 140, 0.05);
}

.order-form-title {
    text-align: center;
    margin-bottom: 3rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--lavender);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(90, 63, 140, 0.2);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--lavender);
    outline: none;
}

.form-group input[type="tel"] {
    position: relative;
}

.tea-cup-input {
    position: relative;
}

.tea-cup-input::before {
    content: "☕";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--tea-leaf);
    z-index: 1;
}

.tea-cup-input input {
    padding-left: 35px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: var(--graphite);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3,
.footer-contact h3,
.footer-legal h3 {
    color: var(--mint);
    margin-bottom: 20px;
}

.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-legal ul li a {
    color: var(--mint);
}

.footer-legal ul li a:hover {
    color: var(--amber);
}

.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;
    right: 0;
    background-color: var(--graphite);
    color: white;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0 20px 0 0;
}

.btn-consent {
    background-color: var(--amber);
    color: var(--graphite);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-consent:hover {
    background-color: var(--mint);
    color: var(--graphite);
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin: 0 0 15px 0;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    nav ul li {
        margin: 5px;
    }
    
    .form-container {
        padding: 20px;
    }
}

/* Logo styles */
.logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: rgba(90, 63, 140, 0.05);
}

.services-title {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--tea-leaf);
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
} 