/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: rgb(255, 255, 255);
    line-height: 1.6;
}

.header {
    background-color: black;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: red;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.navbar a:hover {
    color: red;
}

.hero {
    text-align: center;
    padding: 3rem;
    background-color: rgb(70, 70, 70);
    color: rgb(255, 0, 0);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero .btn {
    display: inline-block;
    margin: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: red;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.hero .btn:hover {
    background-color: black;
    color: red;
}

.footer {
    text-align: center;
    padding: 1rem;
    background-color: black;
    color: white;
    font-size: 0.9rem;
}

.footer a {
    color: red;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .footer {
        font-size: 0.8rem;
    }
}
/* Slogan Section */
.slogan-section {
    position: relative;
    height: 400px; 
    background: url('images/bg.jpg') no-repeat center center/cover; /* Background image */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.slogan-section .overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Translucent black overlay */
    padding: 20px;
    border-radius: 10px;
    width: 100%; 
    max-width: 700px; /* Max width for larger screens */
}

.slogan-section h2 {
    font-size: 2rem;
    margin: 0;
    font-weight: bold;
    color: red; /* Highlighted red for the slogan */
}

.slogan-section p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slogan-section {
        height: 200px;
    }

    .slogan-section h2 {
        font-size: 1.5rem;
    }

    .slogan-section p {
        font-size: 1rem;
    }
}

/* Best-Selling Watches Section */
.best-selling {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.best-selling h2 {
    font-size: 2rem;
    color: black;
    margin-bottom: 20px;
    font-weight: bold;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Fixed 4 columns for large screens */
    gap: 20px;
    justify-items: center;
    align-items: stretch;
}

.product-card {
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(183, 51, 51, 0.8);
    size:10%;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.2rem;
    color: red;
    margin: 10px 0;
    flex-grow: 0;
}

.product-card p {
    font-size: 1rem;
    color: black;
    margin: 5px 0;
    flex-grow: 0;
}

.product-card .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: black;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    flex-grow: 0;
}

.product-card .btn:hover {
    background-color: red;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for medium screens */
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
    }

    .product-card {
        padding: 15px;
        height: 300px;
    }

    .product-card img {
        height: 120px;
    }

    .product-card h3 {
        font-size: 1rem;
    }

    .product-card p {
        font-size: 0.9rem;
    }

    .product-card .btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* Always 2 columns for mobile */
    }

    .product-card {
        padding: 10px;
        height: 300px;
    }

    .product-card img {
        height: 100px;
    }

    .product-card h3 {
        font-size: 0.9rem;
    }

    .product-card p {
        font-size: 0.8rem;
    }

    .product-card .btn {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f7f7f7;
    line-height: 1.6;
}

h2 {
    color: red;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

/* Header */
.header {
    background-color: black;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header .logo {
    height: 70px;
    width: auto;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.navbar a:hover {
    color: red;
}

h2 {
    margin-top: 0;
}

/* About Us Section */
.about-us {
    background: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    text-align: justify;
}

.about-us ul {
    list-style-type: disc;
    margin-left: 20px;
}

.about-us ul li {
    margin: 5px 0;
    font-weight: bold;
}

.about-us strong {
    color: red;
}

/* Contact Info Section */
.contact-info {
    background: #eee;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.contact-info a {
    color: red;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Retail Outlets Section */
.retail-outlets {
    background: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.retail-outlets ul {
    list-style-type: square;
    margin-left: 20px;
}

.retail-outlets ul li {
    margin: 5px 0;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1rem;
    background-color: black;
    color: white;
    font-size: 0.9rem;
}

.footer a {
    color: red;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .about-us,
    .contact-info,
    .retail-outlets {
        padding: 15px;
    }

    .navbar a {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5rem;
    }

    .about-us ul,
    .retail-outlets ul {
        margin-left: 10px;
    }

    .footer {
        font-size: 0.8rem;
    }
}
.section-title{
    color:black;
}
/* Notes Section */
.notes {
    background: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.notes h2 {
    color: red;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.notes ul {
    list-style-type: circle;
    margin-left: 20px;
}

.notes ul li {
    margin: 10px 0;
    font-size: 1rem;
    color: #333;
}
