/*
 Theme Name:   Bento Child
 Description:  Child theme for the Bento theme
 Author:       Gemini
 Template:     bento
 Version:      1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@700&display=swap');

body {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* --- Custom Styles for a More Modern Look --- */

/* Make the header sticky and give it a background */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff; /* Assuming a white background, can be changed */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Add a subtle shadow for depth */
}

/* The parent theme has a 'no-fixed-header' class, let's override that if it's present */
.site-header.no-fixed-header {
    position: fixed;
}

/* The .bnt-container gives the header a max-width. 
   For a full-width header content, we might need to adjust it, 
   but for now let's keep it centered. */

/* Add top padding to the main content area to prevent overlap with the fixed header.
   The default header is about 80px tall, so let's start with that. */
.site-content {
    padding-top: 80px; 
}

/* By default, the site-wrapper may have a max-width. Let's make it full-width
   for our new design, which is a prerequisite for a full-width slider. */
.site-wrapper {
    max-width: 100%;
}

/* The original theme uses a bnt-container to constrain width. 
   We will override this for the main content area to allow a full-width slider,
   but use it inside sections to keep content centered. */
.site-content > .bnt-container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* --- Coupon Section Styles --- */

.coupon-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.coupon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.coupon-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coupon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.coupon-item h3 {
    font-size: 1.5rem;
    margin-top: 0;
    color: #333;
}

.coupon-item .coupon-code {
    display: inline-block;
    background-color: #ff4136;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 15px 0;
    border: 2px dashed #ffffff;
    box-shadow: 0 0 0 3px #ff4136;
    transition: transform 0.3s ease;
}

.coupon-item:hover .coupon-code {
    transform: scale(1.05);
}

.coupon-item p {
    color: #666;
    font-size: 0.9rem;
}

.coupon-item .coupon-expiry {
    font-size: 0.8rem;
    color: #999;
    margin-top: 15px;
}

/* Hide Smart Slider */
[class*="smart-slider"] {
    display: none !important;
}

/* --- Footer Styles --- */

.site-footer {
    background-color: #222;
    color: #ccc;
    padding: 60px 0;
}

.site-footer .bnt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

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

.site-footer .copyright {
    font-size: 0.9rem;
}

.site-footer .social-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.site-footer .social-links li {
    margin-left: 15px;
}

.site-footer .social-links a {
    font-size: 1.2rem;
}

