/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f5f2;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/Assets/images/banner-1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 90vh;
    margin: 1.2em;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em 2em;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 20px 20px 0 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    color: #c1121f;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2em;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5em 1em;
    border-radius: 5px;
}

nav ul li a:hover {
    color: #c1121f;
    background-color: rgba(255, 255, 255, 0.1);
}

.carticon {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carticon:hover {
    transform: scale(1.1);
}

.carticon::after {
    content: attr(data-count);
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #c1121f;
    color: white;
    border-radius: 50%;
    padding: 0.2em 0.6em;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Header Content */
.img-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4em 2em;
    flex-wrap: wrap;
}

.header-img {
    flex: 1;
    min-width: 300px;
    padding-right: 2em;
}

.header-img h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.header-img p {
    color: #e0e0e0;
    margin-bottom: 2em;
    font-size: 1.1rem;
    line-height: 1.8;
}

.header-img button {
    padding: 1em 3em;
    border: none;
    background: linear-gradient(45deg, #c1121f, #780000);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(193, 18, 31, 0.4);
}

.header-img button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(193, 18, 31, 0.6);
}

.img-header img {
    flex-shrink: 0;
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Products Section */
.Products {
    margin: 4em 1.2em;
    padding: 2em 0;
}

.Products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1em;
    color: #780000;
    position: relative;
}

.Products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #c1121f;
}

.products-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    margin-top: 3em;
}

.content-products {
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 1.5em;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 280px;
}

.content-products:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.content-products img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 1em;
}

.content-products data {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c1121f;
    display: block;
    margin: 0.5em 0;
}

.content-products del {
    color: #999;
    font-size: 1rem;
    margin-left: 0.5em;
}

.content-products button {
    margin: 1em auto 0;
    display: block;
    padding: 0.8em 2.5em;
    border: none;
    background: linear-gradient(45deg, #c1121f, #780000);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.content-products button:hover {
    background: linear-gradient(45deg, #780000, #c1121f);
    transform: scale(1.05);
}

/* About Section */
.About {
    background: linear-gradient(135deg, #780000, #c1121f);
    margin: 4em 1.2em;
    border-radius: 20px;
    padding: 3em;
    display: flex;
    align-items: center;
    gap: 4em;
    flex-wrap: wrap;
    color: white;
    box-shadow: 0 10px 30px rgba(120, 0, 0, 0.2);
}

.About img {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.About-content {
    flex: 2;
    min-width: 300px;
}

.About-content h2 {
    font-size: 3rem;
    margin-bottom: 0.5em;
    position: relative;
    display: inline-block;
}

.About-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: white;
}

.About-content p {
    font-size: 1.1rem;
    margin-bottom: 1em;
    line-height: 1.7;
}

.About-content button {
    padding: 1em 3em;
    margin-top: 1em;
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.About-content button:hover {
    background-color: white;
    color: #c1121f;
}

/* Gallery Section */
.Gallery {
    text-align: center;
    margin: 4em 1.2em;
    padding: 2em 0;
}

.Gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 1em;
    color: #780000;
    position: relative;
}

.Gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #c1121f;
}

.Gallery-content {
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin-top: 3em;
}

.content-Gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5em;
}

.Gallery-content img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.Gallery-content img:hover {
    transform: scale(1.05);
}

/* Location Section */
.location {
    margin: 4em 1.2em;
    background-color: white;
    border-radius: 20px;
    padding: 3em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-intro {
    text-align: center;
    margin-bottom: 3em;
}

.location-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
    color: #780000;
}

.location-btn {
    display: flex;
    justify-content: center;
    gap: 1em;
    flex-wrap: wrap;
}

.location-btn button {
    padding: 1em 2.5em;
    border: none;
    background: linear-gradient(45deg, #c1121f, #780000);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-btn button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(193, 18, 31, 0.4);
}

.location-content {
    display: flex;
    align-items: center;
    gap: 3em;
    flex-wrap: wrap;
}

.content-location {
    flex: 2;
    min-width: 300px;
}

.content-location h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
    color: #780000;
}

.content-location p {
    margin-bottom: 1em;
    line-height: 1.7;
}

.location-content iframe {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    text-align: center;
    padding: 4em 2em;
    background: linear-gradient(135deg, #222, #000);
    color: white;
    margin-top: 4em;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2em;
    margin-bottom: 3em;
}

.content-footer {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.content-footer h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5em;
    color: #c1121f;
    position: relative;
    display: inline-block;
}

.content-footer h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #c1121f;
}

.content-footer p {
    margin-bottom: 1em;
    color: #ccc;
}

.content-footer ul {
    list-style: none;
}

.content-footer ul li {
    margin-bottom: 0.8em;
}

.content-footer ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s ease;
}

.content-footer ul li a:hover {
    color: #c1121f;
}

.footer hr {
    border: none;
    height: 1px;
    background-color: #444;
    margin: 2em 0;
}

.footer > p {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .img-header {
        gap: 2em;
        text-align: center;
    }
    
    .header-img h1 {
        font-size: 2.8rem;
    }
    
    nav ul {
        margin-left: 0;
        gap: 1em;
    }
    
    .About {
        gap: 2em;
    }
}

@media (max-width: 768px) {
    header {
        margin: 0.5em;
        border-radius: 10px;
    }
    
    nav {
        flex-direction: column;
        gap: 1em;
        padding: 1em;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li a {
        margin-left: 0;
    }
    
    .header-img h1 {
        font-size: 2.2rem;
    }
    
    .img-header {
        flex-direction: column;
        text-align: center;
    }
    
    .About, .location, .Products, .Gallery {
        margin: 2em 0.5em;
        padding: 1.5em;
    }
    
    .location-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .content-footer {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .header-img h1 {
        font-size: 1.8rem;
    }
    
    .header-img button, .About-content button, .location-btn button {
        padding: 0.8em 2em;
    }
    
    .Products h2, .Gallery h2, .location-intro h2 {
        font-size: 2rem;
    }
    
    .About-content h2 {
        font-size: 2.2rem;
    }
}