
/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #333;
   
}

/* NAVBAR */
.main-nav {
    background-color: #0077cc; /* blue bar */
    width: 100%;
    padding: 12px 0;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    justify-content: center; /* centers all links */
    align-items: center;
    gap: 2.5rem; /* spacing between links */
}

.nav-links li a {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

.nav-links li a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1.2rem;
    }

.hero {
    background-image: url("hero-img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    width: 100%;
    min-height: 450px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    position: relative;
    padding: 40px 20px;
    color: #ffffff;
    text-shadow: 5px 5px 5px black;
    
}



.hero-btn {
    display: inline-block;
    background: #e63946;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

/* RIGHT SIDE IMAGE */
.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 500px;      /* adjust size */
    border-radius: 12px;
    display: block;
}



/* COUPON ALERT BAR */
.coupon-alert {
    background: #0077ff;
    color: white;
    padding: 14px 20px;
    text-align: center;
    font-size: 16px;
    font-family: Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.coupon-alert p {
    margin: 0;
    font-weight: 500;
}

.coupon-code {
    background: white;
    color: #0077ff;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.coupon-link {
    color: white;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.coupon-link:hover {
    opacity: 0.85;
}
/* COUPON BADGE */
.coupon-badge {
    position: absolute;
    right: 220px;        /* was 180px — moves badge LEFT toward last animal */
    top: 50%;
    transform: translateY(-50%);

    width: 220px;
    height: 220px;

    background: #e63946;
    color: white;
    border-radius: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    padding: 16px;
    z-index: 5;
}

.coupon-badge .badge-top {
    font-size: 1.1rem;
    font-weight: bold;
}

.coupon-badge .badge-middle {
    font-size: 2rem;
    font-weight: 800;
}

.coupon-badge .badge-bottom {
    font-size: 1rem;
}



/* Mobile */
@media (max-width: 600px) {
    .coupon-alert {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }



/* BUTTONS */
.btn-primary {
    background: #ff4d4d;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #e63b3b;
}

.btn-secondary {
    background: #0077ff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #005fcc;
}

/* -------------------------------- */
/* ACTIVITIES SECTION               */
/* -------------------------------- */

/* FULL-WIDTH BLUE BACKGROUND */
.categories-section {
    background-color: #cce6ff;
    width: 100%;
    padding: 3rem 0;
    margin-top: 0;
}

/* CENTERED INNER CONTENT */
.categories {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

/* TITLE */
.categories-title {
    font-size: 1.9rem;
    color: red;
    font-family: "Holitter Gothic";
    margin: 0;
}

/* Grid LAYOUT */
.categories-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap; /* keeps them in one row */
    margin-top: 2rem;
}

/* EACH CATEGORY CARD */


/* CIRCULAR IMAGES */
.category-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    
    display: block;
    margin: 0 auto 1rem;
}

/* DEALS SECTION */
.deals-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.deals-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 30px;
    color: #222;
}

.deals-subtitle {
    font-size: 1.6rem;
    margin: 30px 0 15px;
    color: #333;
}

/* GRID */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* DEAL CARD */
.deal-card {
    background: #fff5f5;
    border: 2px solid #e63946;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.2s ease;
}

.deal-card img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.deal-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #e63946;
}

.deal-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #444;
}

/* BUTTON */
.deal-btn {
    background: #e63946;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.deal-btn:hover {
    opacity: 0.85;
}





/* TOP ROW */

.site-footer {
    background: #cce6ff;
    padding: 40px 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    font-family: Arial, sans-serif;
}



.footer-top {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: 50px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #222;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 6px 0;
}

.footer-col ul li a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 25px 0;
    padding: 10px 0;
    align-items: center;
}




.footer-social img {
    width: 32px;            /* slightly larger */
    height: 32px;
    object-fit: contain;    /* NEW — prevents cropping */
    display: block;         /* NEW — removes inline spacing issues */
}

/* CERTIFICATIONS */
.footer-certifications {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-certifications img {
    height: 40px;
}

/* LEGAL LINKS */
.footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 20px;
}

.footer-legal a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* COPYRIGHT */
.footer-copy {
    font-size: 0.85rem;
    color: #555;
}


/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom p {
        padding: 0 10px;
    }

