/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
.navbar {
    background-color: #007bff;
    padding: 5px 15px;
    min-height: 50px;
}

/* Adjustments for mobile view */
@media (max-width: 768px) {
    .navbar {
        padding: 3px 10px; /* Further reduce padding in mobile */
    }

    .navbar-brand {
        font-size: 1.2rem;
        padding: 3px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 6px 10px; /* Reduce padding vertically */
    }

    .navbar-toggler {
        padding: 3px;
    }
}

/* Navbar Brand */
.navbar-brand {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: white;
    font-size: 1rem;
    padding: 8px 12px;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Navbar Toggler (Hamburger Menu) */
.navbar-toggler {
    border: none;
    background-color: transparent;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Main Container */
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* Header Styling */
h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #343a40;
    margin-bottom: 15px;
}

/* Paragraph Styling */
p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Responsive Image */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Buttons */
.btn-custom {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #0056b3;
}

/* Footer Styling */
.footer {
    background-color: #007bff; /* Blue Background */
    color: white! important; /* Force White Text */
    text-align: center;
    padding: 20px 10px;
    margin-top: 30px;
}

/* Footer Menu without LI elements */
.footer-menu {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between links */
    flex-wrap: wrap; /* Wraps on smaller screens */
    margin-bottom: 10px;
}

/* Footer Links - White & Underlined */
.footer-menu a {
    color: white !important; /* Force White */
    text-decoration: underline; /* Ensures visibility */
    font-size: 1rem;
    padding: 5px 10px; /* Provides spacing */
    transition: color 0.3s ease;
}

/* Footer Links Hover */
.footer-menu a:hover {
    color: #e2e6ea !important; /* Light Gray Hover */
}

/* Footer Text */
.footer p {
    color: white !important; /* Force White */
    font-size: 0.9rem;
    margin-top: 10px;
}
coupon-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.coupon:hover {
    background-color: #f9f9f9;
}

.coupon .left {
    flex-basis: 40%;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.coupon .right {
    flex-basis: 60%;
    font-size: 20px;
    font-weight: bold;
    color: #444;
    text-align: right;
}

.coupon-code {
    display: none;
    margin-top: 15px;
    font-size: 22px;
    font-weight: bold;
    color: #007bff;
    text-align: center;
}

.copy-button {
    display: none;
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.copy-button:hover {
    background-color: #0056b3;
}
