/* Merging reviews styling into main style */
:root {
    --bg-color: #fcfcfc;
    --text-color: #1a1a1a;
    --accent-color: #d4af37; 
    --secondary-color: #4a4a4a;
    --white: #ffffff;
    --transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.reveal { opacity: 1; transform: translateY(0); }

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.lang-switch { position: fixed; top: 20px; right: 20px; z-index: 100; font-size: 0.8rem; font-weight: 600; }
.lang-switch a { text-decoration: none; color: var(--secondary-color); padding: 5px 10px; transition: var(--transition); }
.lang-switch a.active { color: var(--text-color); border-bottom: 2px solid var(--accent-color); }

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('https://therootbrands.com/cdn/shop/files/desktop-athlete.jpg') center/cover no-repeat;
}

.hero h1 { font-size: 4rem; margin-bottom: 1rem; }
.hero p { font-size: 1.5rem; margin-bottom: 2rem; color: var(--secondary-color); }

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--text-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary:hover { background-color: var(--accent-color); }

.story { padding: 100px 0; background-color: var(--white); }
.story-flex { display: flex; align-items: center; gap: 4rem; text-align: left; }
.story-img img { width: 350px; border-radius: 20px; box-shadow: 20px 20px 60px rgba(0,0,0,0.1); transition: var(--transition); }
.story-img img:hover { transform: scale(1.05); }
.story-text h2 { font-size: 3rem; margin-bottom: 1.5rem; }
.story-text p { font-size: 1.2rem; max-width: 600px; }

/* REVIEWS SECTION */
.reviews { padding: 100px 0; background: #fdfdfd; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    text-align: center;
}
.stars { color: var(--accent-color); font-size: 1.2rem; margin-bottom: 1rem; }
.review-text { font-style: italic; margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--secondary-color); }
.customer-name { font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

.products { padding: 100px 0; }
.section-title { text-align: center; font-size: 3rem; margin-bottom: 4rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; }

.card {
    background: var(--white);
    padding: 2rem;
    border: 1px solid #eee;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: var(--accent-color); }

.product-img-container { height: 200px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.product-img-container img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); transition: var(--transition); }
.card:hover .product-img-container img { transform: scale(1.1) rotate(2deg); }

.card h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.card p { margin-bottom: 2rem; color: var(--secondary-color); }

.btn-secondary {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}
.btn-secondary:hover { background: var(--text-color); color: var(--white); }

footer { padding: 50px 0; text-align: center; border-top: 1px solid #eee; font-size: 0.9rem; }

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.fade-in h1, .fade-in p { animation: fadeInUp 1s forwards ease-out; }
.fade-in h1 { animation-delay: 0.2s; }
.fade-in p { animation-delay: 0.5s; }

@media (max-width: 768px) {
    .story-flex { flex-direction: column; text-align: center; }
    .story-text { text-align: center; }
    .hero h1 { font-size: 2.5rem; }
}
