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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #001526;
    background-color: #f5f5f5;
    font-size: 16px;
}

/* Navigation */
nav {
    background-color: #001526;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    white-space: nowrap;
    font-weight: bold;
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    
}

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

.nav-links a {
    padding: 0 3px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: gold;
    cursor: pointer;
}
.menu-btn {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}
.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}
.sidebar {
    position: fixed;
    left: -250px;
    top: 0;
    height: 100%;
    width: 250px;
    background: #001526;
    padding-top: 60px;
    transition: 0.3s;
    z-index: 99;
}

.sidebar.active {
    left: 0;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: none;
}
.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    padding: 15px 25px;
}

.sidebar-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    transition: 0.3s;
}

.sidebar-links a:hover {
    color: gold;
}
/* Header and Slider */
header {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 60px;
    overflow: hidden;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00152671;
}

.hero {
    position: relative;
    z-index: 2;
    text-shadow: 0 0px 20px #001526;
    color: #fff;

}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    /* display: inline-block; */
    padding: 1rem 2rem;
    background-color: #027D9D;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #001526;

}

/* Featured Collection */
#view-all-collection{
    position: absolute;
    right: 10%;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #027D9D;
    border: 2px solid #001526;
    color: #fff;
    &:hover{
        cursor: pointer;
        background-color: #001526;
        transform: translateY(-10%);

    }
}
.featured {
    padding: 5rem 2rem;
    background-color: white;
}

.featured h2 {
    text-align: center;
    margin-bottom: 3rem;
}

#products {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-product-card {
    min-width: 300px;
    max-width: 400px;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
}

.featured-product-card:hover {
    transform: translateY(-5px);
}

.featured-product-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.featured-product-card h3 {
    color: #001526;
    margin: 0.5rem 0;
}

.featured-product-card p {
    color: #001526;
    margin: 0.5rem 0;
}
.featured-product-card button{
    background-color: #027D9D;
    color: #fff;
    border: none;
    padding: 0.5rem;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s;
    &:hover{
        background-color: #0B2238;

    }
}
.inquire-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #027D9D;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.inquire-button:hover {
    background-color: #001526;
}

/* About Section */
.about {
    background-color: #0B2238;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.about h2 {
    margin-bottom: 2rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-color: white;
    text-align: center;
}

.contact h2 {
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    color: #001526;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #027D9D;
    text-shadow: 0 0 10px #001526;
}

/* Footer */
footer {
    background-color: #0B2238;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}
.footer-section h3>a{
    color: #fff;
    padding: 3px 0px;
    text-underline-offset: 3px;
    &:hover{
        color: gold;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #027D9D;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-btn {
        display: block;
    }

    .close-btn {
        display: block;
    }

    .sidebar {
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    #view-all-collection{
        position: static;
        /* float: right; */
    }
    header{
        height: 70vh;
    }
    .features {
        grid-template-columns: 1fr;
      }
}