/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-red: #A30000;
    /* Deep premium red */
    --primary-red-light: #D90404;
    /* Lighter red for gradients/hover */
    --text-dark: #1A1A1A;
    --text-grey: #4A4A4A;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-grey);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--primary-red);
}

.btn:hover {
    background-color: var(--white);
    color: var(--primary-red);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-red);
}

.section {
    padding: 80px 0;
}

/* About Page Images */
.founder-image {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    max-width: 300px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.passion-image {
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    padding: 20px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    /* Adjust based on actual logo ratio */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-dark);
}

nav ul li a:hover {
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--white) 50%, #FFF5F5 50%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 span {
    color: var(--primary-red);
    display: block;
}

/* Features/Services */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-red);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #111;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Add JS toggle for mobile menu later */
    }

    /* Stack images on mobile */
    .founder-image {
        float: none;
        margin: 20px auto;
        display: block;
        max-width: 100%;
    }

    .passion-image {
        max-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px 0;
    display: none;
    /* Hidden by default, shown via JS */
    border-top: 3px solid var(--primary-red);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--primary-red);
    text-decoration: underline;
}

.cookie-btn-group {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    cursor: pointer;
}