/* Global Styles */
:root {
    --primary-yellow: #EFC950;
    --primary-red: #C73834;
    --dark-gray: #1A1919;
    --white: #ffffff;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-red);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    background-color: var(--dark-gray);
    color: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid var(--primary-yellow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 15px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.brand-name {
    font-family: 'Bree Serif', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-yellow);
    letter-spacing: 1px;
}

.brand-name a {
    color: inherit;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

nav ul li a:hover, 
nav ul li a.active {
    border-bottom: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
}

/* Hero Section */
#hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 5px solid var(--primary-red);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.1);
    transition: transform 0.5s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 25, 25, 0.7), rgba(26, 25, 25, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
    text-align: center;
    padding-top: 2rem;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

#hero h2 span {
    color: var(--primary-red);
    font-family: 'Bree Serif', serif;
}

#hero p {
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1rem;
}

.hero-cta {
    display: inline-block;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-cta-red {
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.hero-cta-yellow {
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
    border: 2px solid var(--primary-yellow);
}

.hero-cta-red:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(199, 56, 52, 0.3);
}

.hero-cta-yellow:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(239, 201, 80, 0.3);
}

/* Products Section */
#products {
    padding: 4rem 0;
    text-align: center;
}

#products h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--primary-red);
    position: relative;
}

#products h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-yellow);
    margin: 0.5rem auto 0;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 0 auto;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 1.5rem;
    border-top: 3px solid var(--primary-red);
    position: relative;
    width: 280px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(239, 201, 80, 0.4);
    border-top: 3px solid var(--primary-red);
    border-bottom: 3px solid var(--primary-yellow);
}

.product-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-image img {
    max-height: 100%;
    object-fit: contain;
}

.product-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.view-details-btn {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.view-details-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
    transform: translateY(-2px);
}

.product-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0 0 0 8px;
    z-index: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    width: 90%;
    max-width: 1000px;
    border-radius: 8px;
    overflow: hidden;
    animation: modalFadeIn 0.4s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-30px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-btn {
    float: right;
    color: var(--dark-gray);
    font-size: 28px;
    font-weight: bold;
    padding: 10px 15px;
    cursor: pointer;
}

.close-btn:hover {
    color: var(--primary-yellow);
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
}

.modal-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.modal-info {
    flex: 2;
    min-width: 300px;
    padding: 1rem;
}

.modal-info h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    font-size: 2rem;
}

.modal-info h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--primary-yellow);
    margin: 0.5rem 0 0;
}

.modal-info p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.modal-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.modal-btn-red {
    background-color: var(--primary-red);
    color: var(--white);
}

.modal-btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.modal-btn-red:hover {
    background-color: #a52e2a;
}

.modal-btn-yellow:hover {
    background-color: #d9b546;
}

/* About Section */
#about {
    position: relative;
    padding: 6rem 0;
    color: var(--white);
    border-top: 5px solid var(--primary-red);
    border-bottom: 5px solid var(--primary-yellow);
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: grayscale(20%);
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 25, 25, 0.85), rgba(26, 25, 25, 0.85));
    z-index: -1;
}

#about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    color: var(--white);
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#about h2 span {
    color: var(--primary-yellow);
    font-family: 'Bree Serif', serif;
}

#about h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-red);
    margin: 0.8rem auto 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(26, 25, 25, 0.6);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
    border-right: 4px solid var(--primary-yellow);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: left;
    font-size: 1.1rem;
}

.cta-button {
    text-align: center;
    margin-top: 2rem;
}

.contact-btn {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
    letter-spacing: 1px;
}

.contact-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(239, 201, 80, 0.3);
}

/* Contact Section */
#contact {
    padding: 2rem 0;
    background-color: var(--white);
    border-top: 5px solid var(--primary-yellow);
    border-bottom: 5px solid var(--primary-red);
}

#contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    color: var(--dark-gray);
    position: relative;
}

#contact h2 span {
    color: var(--primary-yellow);
    font-family: 'Bree Serif', serif;
}

#contact h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-red);
    margin: 0.8rem auto 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin: 0 1rem 1rem;
    min-width: 250px;
    flex: 0 1 auto;
}

.contact-icon {
    margin-right: 1rem;
    background-color: var(--primary-red);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.3rem;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1rem;
}

.contact-text p {
    color: var(--dark-gray);
    line-height: 1.4;
    font-size: 0.9rem;
}

.contact-text p a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text p a:hover {
    color: var(--primary-red);
}

/* Responsive styles for contact section */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    border-top: 5px solid var(--primary-red);
}

footer .container p {
    position: relative;
    display: inline-block;
}

.brand-name-footer {
    font-family: 'Bree Serif', serif;
    color: var(--primary-yellow);
    font-weight: 700;
    letter-spacing: 1px;
}

footer .container p::before,
footer .container p::after {
    content: '•';
    color: var(--primary-yellow);
    margin: 0 10px;
    font-size: 1.2rem;
}

/* Scroll to Top Button */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

#scroll-to-top:hover {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

#scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 1rem 15px;
    }
    
    nav ul {
        margin-top: 1rem;
    }
    
    nav ul li {
        margin: 0 1rem;
    }
    
    #hero {
        height: 100vh;
        padding-top: 100px;
    }
    
    #hero h2 {
        font-size: 2.5rem;
        text-align: center;
        word-break: keep-all;
        white-space: normal;
        width: 100%;
        max-width: 100%;
    }
    
    #hero h2 span {
        display: block;
        margin: 0.3rem 0;
        width: 100%;
        text-align: center;
    }
    
    #hero p {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 80%;
        text-align: center;
    }
    
    #about h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
    
    .modal-body {
        flex-direction: column;
    }
}

/* Extra small devices (phones, 430px and down) */
@media (max-width: 430px) {
    #hero h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    #hero h2 span {
        display: inline-block;
        width: 100%;
        text-align: center;
    }
} 