/* =========================
   GLOBAL STYLES
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
    color: #333;
    line-height: 1.6;
}
/* Remove default browser spacing */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* =========================
   HEADER
========================= */

header {
    background: #111;
    color: #fff;
}

/* Affiliate Bar */
.affiliate-disclosure {
    background: #ff9800;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 45px;
    margin-right: 10px;
}

.logo h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* Navigation */
.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    margin-left: 25px;
}

.nav-list a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s ease;
}

.nav-list a:hover {
    color: #ff9800;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* =========================
   SLIDESHOW
========================= */

.slideshow-container {
    width: 100%;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* =========================
   NEWS TICKER
========================= */

.news-ticker {
    background: #111;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-weight: 500;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 15s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* =========================
   CONTENT
========================= */

.content {
    background: #fff;
    padding: 60px 5%;
    text-align: center;
}

.content h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}
/* Full page layout fix */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main content should expand */
main {
    flex: 1;
}
