/*
Theme Name: Mandala Theme
Theme URI: https://mandala.by
Author: Mandala.by
Description: Minimal premium theme for wooden mandalas
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f1eb;
    color: #1f1f1f;

    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* HEADER */

.site-header {
    height: 82px;
    padding: 0 56px;

    display: grid;
    grid-template-columns: 220px 1fr 140px;
    align-items: center;

    background: #f5f1eb;
    border-bottom: 1px solid #e5ddd2;

    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    width: 220px;
    height: auto;
    display: block;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 42px;

    font-size: 15px;
}

.header-btn {
    justify-self: end;

    padding: 14px 28px;

    border: 1px solid #b69373;
    border-radius: 4px;

    font-size: 15px;
}

/* HERO */

.hero {
    height: 725px;

    display: flex;
    align-items: center;

    padding: 0 80px;

    background: 
    linear-gradient(
            90deg,
            rgba(245,241,235,0.85) 0%,
            rgba(245,241,235,0.65) 18%,
            rgba(245,241,235,0.25) 32%,
            rgba(245,241,235,0) 45%
        ),
        
    url('/wp-content/uploads/2026/06/hero-section-scaled.png');
    

    background-size: cover;
    background-position: 80% center;
    background-repeat: no-repeat;
}


.hero-left {
  max-width: 520px;
  padding-left: 0;
  transform: translateY(-20px);
}

.hero-left h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 44px;
    line-height: 1.12;
    font-weight: 400;
    color: #2a241d;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hero-left p {
    font-family: Arial, sans-serif;
    max-width: 430px;
    font-size: 17px;
    line-height: 1.6;
    color: #4a4037;
    margin-bottom: 30px;
}

/* BUTTONS */

.btn {
    display: inline-block;

    padding: 18px 34px;

    border-radius: 6px;

    background: #b97952;
    color: white;

    transition: 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(250, 247, 241, 0.9);
    color: #2a241d;
    border: 1px solid rgba(190, 170, 150, 0.6);
}

/* PRODUCTS */

.products {
    padding: 120px 80px;
}

.products h2 {
    text-align: center;

    font-size: 54px;
    font-weight: 500;

    margin-bottom: 60px;
}

.product-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.product-card {
    background: white;

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.04);

    transition: 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    aspect-ratio: 1 / 1;

    object-fit: cover;
}

.product-card h3 {
    font-size: 28px;

    padding: 28px 28px 10px;
}

.product-card p {
    padding: 0 28px 28px;

    color: #7a736d;
}

/* FEATURES */

.features {
    padding: 120px 80px;

    background: #f0ebe4;
}

.features h2 {
    text-align: center;

    font-size: 54px;

    margin-bottom: 60px;
}

.feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 40px;
}

.feature-grid div {
    background: white;

    padding: 40px;

    border-radius: 12px;
}

.feature-grid h3 {
    font-size: 28px;

    margin-bottom: 20px;
}

.feature-grid p {
    line-height: 1.8;

    color: #6b655f;
}

/* CTA */

.cta {
    padding: 120px 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.cta h2 {
    font-size: 58px;

    margin-bottom: 20px;
}

.cta p {
    font-size: 22px;

    color: #6b655f;
}

/* FOOTER */

.footer {
    padding: 80px;

    background: #ece5db;

    display: flex;
    justify-content: space-between;

    gap: 40px;
}

.footer div {
    display: flex;
    flex-direction: column;

    gap: 16px;
}

.footer strong {
    font-size: 32px;
}