:root {
    --primary: #E31E24;
    /* Red from the logo */
    --primary-dark: #A01519;
    --accent: #FFD700;
    /* Gold/Yellow for highlights */
    --text: #1a1a1a;
    --text-light: #555;
    --bg: #ffffff;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(227, 30, 36, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(227, 30, 36, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    width: 320px;
    height: 100px;
    margin-top: 35px;
    /* Further increased to lower the logo */
    background-image: url('image/logos.jpg');
    background-size: 125% auto;
    background-position: -45px 88%;
    background-repeat: no-repeat;
    text-indent: -9999px;
    mix-blend-mode: multiply;
    /* Blends white background of image with header */
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero .accent {
    color: var(--primary);
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-image {
    flex: 1;
    position: relative;
    right: -2rem;
}

.hero-image img {
    width: 110%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Products Section */
.products {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.card-image {
    height: 180px;
    background: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #F9F5F0;
}

.about-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.subtitle {
    display: block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.features {
    list-style: none;
    margin-top: 2rem;
}

.features li {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.features span {
    color: var(--primary);
    margin-right: 10px;
}

.small-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
}

.contact-card {
    background: var(--white);
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 4rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 3rem;
}

.detail-item {
    margin-bottom: 1.5rem;
}

.detail-item strong i {
    color: var(--white);
    margin-right: 10px;
    width: 20px;
}

.phone-list {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
}

.phone-list a {
    display: block;
    margin-bottom: 5px;
}

.contact-info a {
    color: var(--white);
    text-decoration: underline;
}

.contact-map-side {
    flex: 1.5;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: #2C2C2C;
    color: #999;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #444;
    padding-top: 2rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    margin-left: 1.5rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-credits {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-credits a {
    color: inherit;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        padding-top: 8rem;
    }

    .hero-image {
        right: 0;
        margin-top: 3rem;
    }

    .about-wrapper {
        flex-direction: column;
    }

    .contact-card {
        flex-direction: column;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 2000;
    display: none;
    /* Hidden by default, shown by JS */
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}