/* --- Variables & Reset --- */
:root {
    --bg-color: #fdfaf6;       /* Soft cream background */
    --primary: #8c7851;        /* Muted clay/brown */
    --accent: #a3b18a;         /* Sage green */
    --text-main: #4a4a4a;      /* Dark charcoal grey */
    --text-light: #7a7a7a;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation --- */
.navbar {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

/* --- Hero Section --- */
.hero {
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.highlight {
    color: var(--accent);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-icons {
    display: flex;
    gap: 30px;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--primary);
}

.hero-image .image-card {
    background-color: var(--accent);
    height: 400px;
    border-radius: 40px 10px 40px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: var(--shadow);
}

/* --- Subscription Section --- */
.subscribe-section {
    padding: 60px 0;
}

.subscribe-card {
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.subscribe-card h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.subscribe-card p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 15px;
}

.subscribe-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.subscribe-form button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.3s;
}

.subscribe-form button:hover {
    opacity: 0.9;
}

/* --- Rules Section --- */
.rules-section {
    padding: 80px 0;
    background-color: #f7f3ed;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.rule-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.rule-card:hover {
    transform: translateY(-5px);
}

.rule-card i {
    color: var(--accent);
    margin-bottom: 20px;
}

.rule-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.rule-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* --- Footer --- */
.footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-text p {
        margin: 0 auto 30px;
    }
    .hero-icons {
        justify-content: center;
    }
    .subscribe-form {
        flex-direction: column;
    }
    .nav-links {
        display: none; /* Simplify for mobile */
    }
}
