html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
    margin-top: 6px;
    text-align: center;
    font-style: italic;
    width: 100%;
    display: block;
}

.site-title {
    text-align: center;
    margin: 20px 0 10px;
    width: 100%;
}

.site-title a {
    display: inline-block;
}

.site-logo {
    width: 700px;
    max-width: 90vw;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .site-logo {
        width: 280px;
    }
}


body{

    font-family: "Figtree", sans-serif,
    "Segoe UI", Roboto, "Helvetica Neue", Arial;
    margin:0;
    background:white;
}

header{
    background:#111;
    color:white;
    padding:20px;
}

header h1{
    margin:0;
}



/* NAVIGATION BAR */
.navbar {
    background: #000;
    color: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.navbar-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    transform: translateY(3px);
}

.navbar-links a:hover {
    color: #ccc;
    text-decoration: none;
}

.navbar-search {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1;
}

.search-icon-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.search-icon-btn i {
    display: block;
    line-height: 1;
}

.search-icon-btn:hover {
    color: #ccc;
}

.nav-search-form {
    display: none;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    gap: 8px;
    background: #000;
    padding-left: 10px;
    z-index: 20;
}

.navbar-search.open .nav-search-form {
    display: flex;
}

.nav-search-input {
    width: 230px;
    height: 28px;
    padding: 0 14px;
    border: 1px solid #cfd4dc;
    border-radius: 8px;
    background: #f8f9fb;
    color: #111;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
}

.nav-search-input::placeholder {
    color: #8b8f97;
}

.nav-search-input:focus {
    border-color: #b8bec8;
    background: #fff;
}

.nav-search-go {
    height: 28px;
    padding: 0 18px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: inherit;
    box-sizing: border-box;
}

.nav-search-go:hover {
    background: #f3f3f3;
}

.nav-search-go:active {
    transform: translateY(1px);
}

.navbar a{
    color:white;
    text-decoration:none;
    margin:0 20px;
    font-size:18px;
    position:relative;
    padding-bottom:5px;
}

.navbar a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:white;
    transition:width 0.3s ease;
}

.navbar a:hover::after{
    width:100%;
}

.container{
    width:1100px;
    margin:auto;
    margin-top:20px;
}

.featured{
    background:#f5f5f5;
    padding:20px;
    margin-bottom:20px;
}

.featured h2{
    margin-top:0;
}

.grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:20px;
}

.article{
    background:#f5f5f5;
    padding:15px;
}

.article h3{
    margin-top:0;
    text-decoration: none;
    color: inherit;
}

.article:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.outer-page {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 140px;
    box-sizing: border-box;
}

.story-page {
    max-width: 760px;
    margin: 0 auto;
}

.story-headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    margin: 30px 0;
}

.story-featured-image {
    margin-bottom: 30px;
}

.story-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-body {
    font-size: 18px;
    line-height: 1.9;
    color: #111;
    white-space: normal;
}

.story-body p {
    margin-bottom: 24px;
}

.footer-spacing {
    height: 40px;
}

footer{
    width: 100%;
    margin-top: 40px !important;
    background:#000;
    color:white;

    text-align:center;
    font-weight: normal;
}
.site-footer {
    background: #000;
    color: #fff;
    margin-top: 50px;
    padding-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo img {
    width: 400px;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #222;
    text-align: center;
    padding: 18px 20px;
    font-size: 13px;
    color: #aaa;
}

.policy-page {
    max-width: 100%;
    padding: 50px 20px;
    background: #fff;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    color: #111;
    line-height: 1.8;
}

.policy-container h1 {
    font-size: 40px;
    margin-bottom: 10px;
    text-align: center;
}

.policy-container h2 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.policy-container p {
    font-size: 16px;
    margin-bottom: 15px;
}


/* CONTACT PAGE */
/* Page center */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px; /* 👈 controls space above footer */
    background-color: #f5f5f5;
}

/* Box */
.contact-box {
    background-color: #fafafa;
    padding: 40px 30px;
    border-radius: 12px;
    width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Title */
.contact-box h1 {
    margin-bottom: 25px;
    font-size: 24px;
    letter-spacing: 1px;
}

/* Inputs */
.input-field {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;

    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;

    box-sizing: border-box;
}

/* Textarea */
.textarea {
    height: 120px;
    resize: none;
}

/* Focus effect */
.input-field:focus {
    border-color: black;
}

/* Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.2s ease;
}

/* Hover */
.submit-btn:hover {
    background-color: #222;
}

.success-text {
    color: #16a34a; /* clean green */
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.error-text {
    color: #dc2626; /* clean red */
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.story-featured-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.story-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}




    /* ______________________________ */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container,
.outer-page,
.story-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Homepage grid */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.article {
    width: 100%;
}

.article h3 {
    font-size: 22px;
    line-height: 1.3;
}

/* Featured image / story images */
.story-featured-image img,
.featured img,
.article img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Story page */
.story-page {
    max-width: 850px;
}

.story-headline {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.story-body {
    font-size: 18px;
    line-height: 1.8;
}

/* Navbar */


.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 12px 15px;
    text-align: center;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

/* Tablet */
@media (max-width: 991px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-headline {
        font-size: 34px;
    }

    .story-body {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .navbar a {
        display: block;
        width: 100%;
    }

    .story-headline {
        font-size: 28px;
    }

    .article h3 {
        font-size: 20px;
    }

    .story-body {
        font-size: 16px;
        line-height: 1.7;
    }

    .site-title {
        text-align: center;
        margin: 20px 0 10px;
        width: 100%;
    }

    .site-title a {
        display: inline-block;
    }

    .site-logo {
        width: 380px;
        max-width: 90vw;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    @media (max-width: 767px) {
        .site-logo {
            width: 280px;
        }
    }
}
@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }
}
