/* GLOBAL RESETS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;
}

body {
    background:
        linear-gradient(rgba(245, 245, 245, 0.85), rgba(245, 245, 245, 0.85)),
        url("bg.jpg") center/cover fixed;
    min-height: 100vh;
    padding: 16px 25px 20px;  /* slightly smaller top padding */
    color: #222;
}

/* HEADER */
header {
    text-align: center;
    margin-bottom: 2px;          /* small gap below header */
    padding-top: 0;
    display: flex;               /* control internal spacing */
    flex-direction: column;
    align-items: center;
    gap: 4px;                    /* VERY small space between logo + subtitle */
}

/* MAIN LOGO IMAGE */
.main-logo {
    width: 180px;                /* adjust if you want bigger/smaller */
    display: block;
    filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.2));
    animation: fadeIn 1s ease-in-out;
}

.subtitle {
    font-size: 14px;
    color: #555;
    margin: 0;                   /* no extra margin around subtitle */
}

/* TAB CONTAINER */
.tab-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 10px 0 22px;         /* much smaller top margin than 25px */
}

.tab-button {
    padding: 10px 20px;
    border: none;
    background: white;
    color: #333;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.tab-button:hover {
    background: #e9e9e9;
}

.tab-button.active {
    background: #222;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* CONTENT SECTIONS */
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

/* TITLES */
h2 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    color: #111;
}

/* DEAL CARDS */
.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 18px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.card-deal {
    font-size: 16px;
    margin-bottom: 4px;
    color: #333;
}

.card-extra {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.card-address {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
    font-style: italic;
}

/* LIST ITEMS */
.card-extra li {
    margin-left: 15px;
}

/* SMALL ICON LOGOS (if you use them anywhere else) */
.logo {
    width: 90px;
    margin-bottom: 5px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* FOOTER */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #666;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* DISCLAIMER BOX */
.disclaimer {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 8px;
    max-width: 220px;
    line-height: 1.3;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    z-index: 999;
    animation: fadeIn 0.7s ease-in-out;
}
