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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color-primary);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Instrument Serif', serif;
    color: #1e3220;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 0.625rem 1rem;
    height: 150px;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.logo {
    font-size: 2rem;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-color-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--accent-color-primary);
}

.header-svg {
    display: flex;
    align-items: flex-start;
}

/* Hero Section */
.hero {
    padding: 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color-primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-color-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color-primary);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color-primary-transparent-3);
}

.products {
    padding: 2rem 0;
}

.products-heading {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.products-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-item {
    position: relative;
    width: 100%;
}

.product-item:hover {
    background-color: var(--accent-color-primary-transparent-3);
    border-radius: 0;
}

.product-image-container {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.product-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: transform 0.5s ease; */
    position: absolute;
    top: 0;
    left: 0;
    mask: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem 2rem;
    color: white;
}


@keyframes fadeInGradient {
    0% {
        opacity: 0;
        background: linear-gradient(135deg, transparent 0%, transparent 50%, transparent 100%);
    }
    50% {
        opacity: 0.5;
        background: linear-gradient(135deg, var(--accent-color-primary-transparent-1) 0%, var(--accent-color-primary-transparent-2) 50%, var(--accent-color-primary-transparent-3) 100%);
    }
    100% {
        opacity: 1;
        background: linear-gradient(135deg, var(--accent-color-primary-transparent-1) 0%, var(--accent-color-primary-transparent-2) 50%, var(--accent-color-primary-transparent-3) 100%);
    }
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color-primary);
}

.product-content .product-title {
    color: var(--text-color-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.product-description {
    color: var(--text-color-secondary);
    margin-bottom: 1.5rem;
}

.product-content .product-description {
    color: rgba(--text-color-primary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.product-link {
    color: var(--accent-color-primary);
    text-decoration: none;
    font-weight: 500;
}

.product-content .product-link {
    color: var(--text-color-primary);
    padding: 0rem;
    border-radius: 6px;
    display: inline-block;
}

/* Footer */
footer {
    background-color: var(--element-bg-color-2);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color-primary);
}

.footer-content {
    color: var(--text-color-tertiary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .header-text {
        text-align: left;
        flex: 1;
    }

    .nav {
        gap: 1rem;
    }

    .header-svg {
        position: absolute;
        top: 0.625rem;
        right: 1rem;
    }

    .header-svg iframe {
        width: 120px;
        height: 144px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .products-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image-container {
        min-height: 300px;
    }
    
    .product-content {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .product-content .product-title {
        font-size: 1.5rem;
    }
}
