/* ✅ Fix the Background */
body {
    background: url("../images/bubblewrap.webp") no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ✅ Centered Content Box */
.container {
    width: 100%;
    max-width: 1000px;
    /* Controls the width */
    background: #846232;
    /* Solid background */
    padding: 0;
    border-radius: 10px;
    border: 2px solid #000;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

/* ✅ Header */
.header {
    text-align: center;
    padding: 5px 0;
}

.banner {
    max-width: 100%;
    height: auto;
}

/* ✅ Fix Navigation Bar */
.nav {
    background: #b3bead;
    /* Solid background color */
    padding: 5px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    text-align: center;
}

/* ✅ Make Nav Items Appear in One Line */
.nav ul {
    list-style: none;
    /* Removes bullets */
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    /* Centers links horizontally */
    align-items: center;
    gap: 20px;
    /* Adds spacing between links */
}

/* ✅ Ensure Each List Item is Inline */
.nav ul li {
    display: inline-block;
    /* Forces items to stay in one line */
}

/* ✅ Style Navigation Links */
.nav a {
    display: inline-block;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    color: #000;
    padding: 10px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.nav a:hover {
    background: #990000;
    color: #fff;
}


/* ✅ Main Content */
.main-content {
    padding: 20px;
    background: #846232;
    text-align: center;
}

/* ✅ Footer Sections Layout */
.footer-sections {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px;
    /* Keep padding small to prevent extra space */
    align-items: stretch;
    background: transparent;
    /* Remove extra background color */
}

/* ✅ Footer Section Boxes */
.footer-sections>div {
    flex: 1;
    padding: 20px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    box-shadow: none;
    /* Remove unnecessary shadows */
}

/* ✅ Fix the Bordered Boxes Inside */
.shipping-section,
.payments-section,
.address-section {
    width: 100%;
    height: 100%;
    padding: 20px;
    border: 2px solid black;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #6b4f31;
    /* Match the footer background */
}

/* ✅ Ensure the Footer Area Doesn't Extend */
.footer {
    background: #846232;
    padding: 10px 0;
    text-align: center;
    border-top: 2px solid #000;
    margin-top: -5px;
    /* Adjust margin to prevent overextension */
}

/* ✅ Style each individual section for better alignment */
.shipping-section,
.payments-section,
.address-section {
    width: 100%;
    height: 100%;
    padding: 20px;
    border: 2px solid black;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* ✅ Align Shipping & Payments to the Top */
.shipping-section,
.payments-section {
    align-items: center;
    /* Centers content horizontally */
    justify-content: flex-start;
    /* Aligns content to the top */
}

/* ✅ Ensure Address Stays Centered */
.address-section {
    justify-content: center;
}

/* ✅ Fix Logo Alignments */
.shipping-logos,
.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

/* ✅ Center content and make spacing even */
.shipping-section h2,
.payments-section h2,
.address-section h2 {
    margin-bottom: 15px;
    font-size: 1.6em;
}

/* ✅ Fix logo sizes to be uniform */
.shipping-logos img,
.payment-icons img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* ✅ Fix Address Section Alignment */
.address-section p {
    margin: 5px 0;
}

/* ✅ Adjust Font Sizes for Better Readability */
.address-section p,
.shipping-section p,
.payments-section p {
    font-size: 1.2em;
    line-height: 1.5;
}

/* ✅ 404 Page Styling */
.error-page {
    text-align: center;
    padding: 50px;
    max-width: 600px;
    margin: 50px auto;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

/* ✅ 404 Title */
.error-page h1 {
    font-size: 6em;
    color: #990000;
    margin-bottom: 10px;
}

/* ✅ Fix "Back to Home" Button */
.error-page .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.25em;
    font-weight: bold;
    text-transform: uppercase;
    background: #990000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.error-page .btn:hover {
    background: #730000;
}

/* ✅ Center Content and Ensure Responsiveness */
.main-content {
    text-align: center;
    padding: 20px;
}

/* ✅ Style the Promo Image */
.promo-image {
    max-width: 800px;
    margin: 0 auto;
}

.responsive-image {
    width: 100%;
    height: auto;
    max-width: 800px;
}

/* ✅ Coupons Section */
.coupons-container {
    background: #6b4f31;
    padding: 20px;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 10px;
    border: 2px solid #000;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

/* ✅ Banner Above Coupons */
.coupon-banner {
    text-align: center;
    margin-bottom: 20px;
}

.coupon-banner-img {
    width: 100%;
    height: auto;

}

/* ✅ Coupon Flexbox Layout */
.coupons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

/* ✅ Individual Coupon */
.coupon {
    background: #ff0;
    padding: 5px;
    border: 2px dashed #000;
    text-align: center;
    width: 45%;
    min-width: 250px;
    border-radius: 10px;
}

.coupon h2 {
    color: #990000;
    font-size: 2em;
    margin-bottom: 10px;
}

.coupon p {
    font-size: 1.5em;
    color: #000;
}

.coupon small {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #333;
}

/* ✅ Add Link Styling for Phone */
.address-section a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

.address-section a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ✅ Products Section Styling */
.products-section {
    text-align: center;
    background: #fff;
    /* White background for contrast */
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #000;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 30px auto;
}

/* ✅ Header Styling */
.products-section h2 {
    font-size: 1.8em;
    font-weight: bold;
    color: #990000;
    margin-bottom: 15px;
}

/* ✅ Product List Styling */
.product-list {
    list-style: none;
    /* Removes default bullets */
    padding: 0;
    margin: 0;
    text-align: left;
}

/* ✅ Modernized Bullet Points */
.product-list li {
    font-size: 1.2em;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ✅ Custom Bullet Point */
.product-list li::before {
    content: "✔";
    /* Uses a checkmark instead of a bullet */
    color: #990000;
    font-weight: bold;
    font-size: 1.2em;
}

/* ✅ Services Section Styling */
.services-section {
    text-align: center;
    background: #fff;
    /* White background for contrast */
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #000;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 30px auto;
}

/* ✅ Header Styling */
.services-section h2 {
    font-size: 1.8em;
    font-weight: bold;
    color: #990000;
    margin-bottom: 15px;
}

/* ✅ Service List Styling */
.service-list {
    list-style: none;
    /* Removes default bullets */
    padding: 0;
    margin: 0;
    text-align: left;
}

/* ✅ Modernized Bullet Points */
.service-list li {
    font-size: 1.2em;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ✅ Custom Checkmark Instead of Bullet */
.service-list li::before {
    content: "✔";
    /* Uses a checkmark instead of a bullet */
    color: #990000;
    font-weight: bold;
    font-size: 1.2em;
}

/* ✅ Services Images Styling */
.services-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.services-images img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

/* ✅ Contact Section Styling */
.contact-section {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #000;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 30px auto;
}

/* ✅ Contact Links */
.contact-section a {
    color: #990000;
    font-weight: bold;
    text-decoration: none;
}

.contact-section a:hover {
    color: #730000;
    text-decoration: underline;
}

/* ✅ Contact Form Styling */
.contact-form {
    text-align: left;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ✅ Form Labels */
.contact-form label {
    font-weight: bold;
    display: block;
}

/* ✅ Form Inputs */
.input-text {
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 1em;
}

/* ✅ Fix Message Box */
textarea.input-text {
    resize: vertical;
    min-height: 120px;
}

/* ✅ Submit Button */
.submit-button {
    width: 100%;
    padding: 10px;
    font-size: 1.2em;
    font-weight: bold;
    background: #990000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #730000;
}