:root {
    --primary-red: #BE141E;
    --accent-yellow: #FFD700;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light-gray: #F9F9F9;
    --font-main: 'Lato', Helvetica, Arial, sans-serif;
    --font-serif: 'Playfair Display', serif; /* For headings to give premium look */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary-red);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* Header */
header {
    background-color: var(--primary-red);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: var(--text-light);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-yellow);
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 0.2rem 0.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.lang-btn.active, .lang-btn:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/Background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding-top: 80px;
}


.hero-scroll-btn-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    pointer-events: none;
}

.hero-scroll-btn {
    pointer-events: auto;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border-radius: 30px;
    opacity: 0.95;
}

.hero {
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-yellow);
}

.hero-content {
    position: absolute;
    top: 28%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-tagline {
    font-family: var(--font-main), var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    line-height: 1.4;
    opacity: 0.5;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-yellow);
    color: var(--primary-red);
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #fff;
}

/* About Section */
.section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about {
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background-color: var(--accent-yellow);
    margin: 0.5rem auto 0;
}

/* Products */
.products {
    background-color: var(--bg-light-gray);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--bg-white);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-red);
    overflow: hidden; /* Ensure scaled image stays within card bounds if desired, or remove if you want it to pop out */
}

.product-card img {
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card h3 {
    margin: 1rem 0;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item p {
    font-size: 1rem;
    color: var(--text-dark);
}

.info-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
}

.info-item a:hover {
    color: var(--accent-yellow);
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form {
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, .contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    font-family: inherit;
    border-radius: 4px;
}

.contact-form button {
    background-color: var(--primary-red);
    color: var(--text-light);
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #a01119;
}

.map-container {
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
footer {
    background-color: var(--primary-red);
    color: var(--text-light);
    padding: 3rem 5%;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.85rem;
    }

    .logo img {
        height: 50px;
    }

    .hero {
        background-attachment: scroll;
        height: 100vh;
    }

    .hero-scroll-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .section {
        padding: 3rem 5%;
    }

    .about h2 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}
