@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@300;400&display=swap');

:root {
    --white: #ffffff;
    --black: #1a1a1a;
    --light-grey: #f8f8f8;
    --dark-grey: #666;
    --accent-gold: #FFD700;
    --accent-blue: #007bff;
}

/* --- Base Styles --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

p, a, button, input, textarea {
    font-family: 'Roboto', sans-serif;
}

/* --- Global Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}
 
.section-heading {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
}

.button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-3px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Nav Bar --- */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
      padding: 0.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    text-decoration: none; /* Keeps the link styling */
}

.navbar-logo img {
    height: 80px; /* Adjust the height to your preference */
    width: auto; /* Maintains the image's aspect ratio */
}
 
.navbar-logo .accent {
    color: var(--accent-gold);
}

.navbar-nav {
    list-style: none;
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.navbar-nav a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
 
.navbar-nav a:hover {
    color: var(--accent-gold);
}

.navbar-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.navbar-button svg {
    stroke: var(--black);
}
 
@media (max-width: 768px) {
    .navbar-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
        padding: 1rem 2rem;
    }

    .navbar-nav.active {
        display: flex;
    }

    .navbar-button {
        display: block;
    }
}



 
/* --- Hero Section --- */
#hero {
    padding-top: 80px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: url('./images/banner01.webp');
    position: relative;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#hero-content {
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
}

#hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    margin-bottom: 1rem;
    animation: fadeIn 1.5s ease-in-out;
}
 
#hero .tagline {
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    animation: fadeIn 2s ease-in-out;
}

.explore-button {
    background-color: var(--accent-gold);
    color: var(--black);
}
 
.explore-button:hover {
    background-color: #e6b800;
}
 
/* --- About Section --- */
#about-banner{

}
#about {
    background-color: var(--white);
}

#about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

/* --- Our Brands Section --- */
#our-brands {
    background-color: var(--light-grey);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.brand-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-btn-container {
    text-align: center;
    margin-top: 2rem;
}
.view-all-button-container {
    text-align: center;
    margin-top: 3rem; /* Adds space between the grid and the button */
}
/* Button styling */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    background-color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    border-radius: 50px; /* Makes it a pill shape */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--black);
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.brand-card .logo {
    width: 160px;
    height: auto;
    /* padding-top: 30px; */

    /* margin-bottom: 1rem; */
    border-radius: 50%;
}

.brand-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.brand-card p {
    font-size: 0.9rem;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
}

.brand-button {
    background-color: var(--black);
    color: var(--white);
}
 
.brand-button:hover {
    background-color: #333;
}

/* --- Product Showcase Section --- */
#product-showcase {
    background-color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
 
.product-card {
    background-color: var(--light-grey);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.03);
}

.product-image-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}
 
.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-brand-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.product-brand-tag img {
    max-width: 60%;
    max-height: 60%;
}

.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}
 
.product-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: none;
    font-weight: 600;
}

.product-info .button {
    margin-top: auto;
    align-self: flex-end;
    font-size: 0.8rem;
    padding: 0.6rem 1.5rem;
    background-color: var(--accent-gold);
    color: var(--black);
}

/* --- Why Choose Us Section --- */
#why-us {
    background-color: var(--light-grey);
    text-align: center;
}

.icons-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}
 
.icon-item {
    width: 200px;
}

.icon-item svg {
    width: 60px;
    height: 60px;
    fill: var(--accent-gold);
    margin-bottom: 1rem;
}
 
.icon-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* --- News Section --- */
#news {
    background-color: var(--white);
}
 
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
 
.news-card {
    background-color: var(--light-grey);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: var(--black);
}
 
.news-card:hover {
    transform: translateY(-5px);
}

.news-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
 
.news-card p {
    font-size: 0.9rem;
    color: var(--dark-grey);
}

/* --- Contact Section --- */
#contact {
    background-color: var(--light-grey);
}
 
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
 
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
 
.contact-form h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}
 
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
 
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    background-color: var(--black);
    color: var(--white);
    font-weight: 700;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #333;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}
 
.contact-info p {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info p a {
    text-decoration: none;
    color: var(--black);
    transition: color 0.3s ease;
}

.contact-info p a:hover {
    color: var(--accent-gold);
}
 
.contact-info svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-gold);
}
 
.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-grow: 1;
}
@media (min-width: 768px) {
    .contact-info {
        margin-top: 0;
    }
}

/* --- Footer --- */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-section a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
 
.footer-section a:hover {
    color: var(--accent-gold);
}

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}
 
.social-links a {
    font-size: 1.5rem;
}
.social-links svg {
    fill: var(--white);
    transition: fill 0.3s ease;
}
.social-links a:hover svg {
    fill: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--dark-grey);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Styling for the Coming Soon card */
.coming-soon-card {
    position: relative;
    cursor: default; /* Change cursor to indicate it's not clickable */
}

/* Make sure the card doesn't have the hover effect */
.coming-soon-card:hover {
    transform: none;
}

/* Style for the "Coming Soon" label */
.coming-soon-tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    letter-spacing: 1px;
    white-space: nowrap; /* Prevents text from wrapping */
}