*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:system-ui,sans-serif;
    color:#222;
    background:#fff;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
    color:inherit;
}

/* Firefox */
*{
    scrollbar-width: thin;
    scrollbar-color: rgba(79,127,53,.75) transparent;
}

/* Chrome */
::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:transparent;
}

::-webkit-scrollbar-thumb{
    background:rgba(79,127,53,.75);
    border-radius:999px;
}

::-webkit-scrollbar-thumb:hover{
    background:#4f7f35;
}

.container{
    width:min(1400px,calc(100% - 40px));
    margin-inline:auto;
}
/*==================================================
HEADER
==================================================*/

.site-header{

    position:fixed;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    width:100%;

    max-width:1450px;

    padding:0 20px;

    z-index:9999;

}

.site-header__wrapper{


    display:grid;

    grid-template-columns:

        230px
        1fr
        auto;

  



    align-items:center;

    gap:50px;

    padding:18px 30px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.35);

    border-radius:22px;

    box-shadow:

        0 15px 40px rgba(0,0,0,.08);

}


.site-logo{

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

    flex-shrink:0;

}

.site-logo__text{

    display:flex;

    flex-direction:column;

    line-height:1;

}

.site-logo__title{

    font-size:36px;

    font-weight:900;

    letter-spacing:-1px;

    color:#264b2d;

}

.site-logo__subtitle{

    margin-top:4px;

    font-size:10px;

    font-weight:600;

    letter-spacing:.18em;

    text-transform:uppercase;

    color:#888;

}

.site-logo__icon{

    width:26px;

    height:18px;

    position:relative;

}

.site-logo__icon::before{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:14px;
    height:14px;

    background:#87b545;

    border-radius:50% 50% 0 50%;

    transform:rotate(45deg);

}

.site-logo__icon::after{

    content:"";

    position:absolute;

    right:0;
    bottom:0;

    width:18px;
    height:18px;

    background:#2f6b3c;

    border-radius:50% 50% 0 50%;

    transform:rotate(45deg);

}

.site-nav{

    display:flex;

    justify-content:center;

}

.menu{

    display:flex;

    align-items:center;
    justify-content:center;

    gap:42px;

    list-style:none;

    margin:0;

    padding:0;

}

.menu li{

    margin:0;

}

.menu a{

    position:relative;

    display:flex;

    align-items:center;

    height:72px;

    color:#222;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:.25s;

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:#F4A629;

    transition:.25s;

}

.menu a:hover::after{

    width:100%;

}

.menu a:hover{

    color:#F4A629;

}

.site-actions{

    display:flex;

    align-items:center;

    justify-self: end;

    gap:14px;
position:relative;

    padding-left:30px;
}


.site-actions::before{

    content:"";

    position:absolute;

    left:0;

    top:50%;

    transform:translateY(-50%);

    width:1px;

    height:28px;

    background:#ececec;

}

.header-icon{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f6f6f6;

    border:none;

    color:#222;

    text-decoration:none;

    transition:.25s;

}

.header-icon:hover{

    background:#4E7C35;

    color:#fff;

    border-color:#4E7C35;

}


.btn-primary{

    height:50px;

    padding:0 24px;

    display:inline-flex;

    align-items:center;

    gap:10px;

    border-radius:14px;

}

.btn-primary:hover{

    background:#335624;

}

.menu-toggle{

    display:none;

    width:48px;

    height:48px;

    border:none;

    background:none;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:26px;

    height:2px;

    margin:6px auto;

    background:#fff;

}

.header-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    height:46px;

    padding:0 22px;

    background:#4E7C35;

    color:#fff;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:.25s;

}

.header-button:hover{

    background:#335624;

}


/* ======================================================
   HERO
====================================================== */

.hero{

    position:relative;

    min-height:820px;

    overflow:hidden;

    color:#fff;
    padding:180px 0 25px 0;

}

.hero__background{

    position:absolute;

    inset:0;

}

.hero__background img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero__overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.72) 0%,
            rgba(0,0,0,.25) 45%,
            rgba(0,0,0,.45) 100%
        );

}

.hero .container{

    position:relative;

    z-index:5;
    padding-inline: 50px;

}

.hero__content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:620px;

}

.hero__left{

    max-width:620px;

}

.hero__eyebrow{

    display:inline-block;

    margin-bottom:18px;

    font-size:15px;

    letter-spacing:.05em;

    text-transform:uppercase;

    color:#f4a629;

}

.hero h1{

    font-size:72px;

    line-height:1.05;

    font-weight:800;

    margin-bottom:28px;

}

.hero h1 span{

    color:#f4a629;

}

.hero p{

    font-size:22px;

    line-height:1.7;

    opacity:.95;

    margin-bottom:40px;

}

.hero-search{

    display:flex;

    overflow:hidden;

    border-radius:18px;

    background:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.2);

}

.hero-search input{

    flex:1;

    border:0;

    padding:22px;

    font-size:17px;

}

.hero-search select{

    width:220px;

    border:0;

    border-left:1px solid #eee;

    padding:22px;

}

.hero-search button{

    width:180px;

    background:#4E7C35;

    color:#fff;

    border:0;

    font-size:17px;

    cursor:pointer;

    transition:.25s;

}

.hero-search button:hover{

    background:#335624;

}

.hero__right{

    width:42%;

    display:flex;

    justify-content:center;

}

.hero__right img{

    width:100%;

    max-width:560px;

}

.hero-categories{

    position:relative;

    z-index:6;

    margin-top:-30px;

    background:#fff;

    border-radius:20px;

    display:flex;

    justify-content:space-between;

    padding:20px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.hero-categories a{

    color:#222;

    text-decoration:none;

    font-weight:600;

}
.hero-stats{

    display:flex;

    gap:40px;

    margin:35px 0;
    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    padding:18px 24px;

    border-radius:18px;

}

.hero-stats strong{

    display:block;

    font-size:30px;

    font-weight:800;

    color:#fff;

}

.hero-stats span{

    color:rgba(255,255,255,.75);

    font-size:14px;

}
.hero-popular{

    display:flex;

    flex-wrap:wrap;

    align-items:center;

    gap:12px;

    margin-top:22px;

}

.hero-popular span{

    color:#fff;

    font-size:14px;

    font-weight:700;

}

.hero-popular a{

    padding:8px 14px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    color:#fff;

    text-decoration:none;

    transition:.25s;

}

.hero-popular a:hover{

    background:#4E7C35;

}
.hero-family{

    position:absolute;

    top:80px;

    right:30px;

    background:#fff;
    color:#20351d;

    padding:12px 18px;

    border-radius:40px;

    font-weight:700;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.trip-card{

    position:absolute;

    right:80px;

    bottom:90px;

    width:320px;

    background:#20351d;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.4);

    z-index:7;

}

.trip-card__image img{

    width:100%;

    display:block;

}

.trip-card__content{

    padding:22px;

}

.trip-card__content span{

    color:#9fd08f;

    font-size:14px;

}

.trip-card__content h3{

    margin:10px 0;

    font-size:28px;

}

.trip-card__content p{

    font-size:15px;

    margin-bottom:24px;

}

.trip-card__content a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#4E7C35;

    color:#fff;

    text-decoration:none;

    padding:14px 22px;

    border-radius:12px;

    font-weight:700;

}
/*==================================================
REGIONS
==================================================*/

.regions{

    padding:90px 0;

    background:#fff;

}

.section-heading{

    display:flex;

    justify-content:space-between;

    align-items:end;

    margin-bottom:40px;

}

.section-subtitle{

    display:block;

    color:#4E7C35;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

    margin-bottom:8px;

}

.section-heading h2{

    font-size:38px;

    font-weight:800;

    color:#222;

}

.section-link{

    text-decoration:none;

    color:#4E7C35;

    font-weight:700;

}

.regions-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.region-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    border:1px solid #ececec;

    transition:.3s;

}

.region-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.region-card a{

    color:inherit;

    text-decoration:none;

    display:block;

}

.region-card__image{

    aspect-ratio:16/10;
transform:scale(1.08);
    overflow:hidden;

}
.region-arrow{

    transition:.25s;

}
.region-card:hover .region-arrow{

    transform:translateX(6px);

}
.region-badge{

    position:absolute;

    top:16px;

    left:16px;

    padding:8px 14px;

    border-radius:999px;

    background:#4E7C35;

    color:#fff;

    font-size:12px;

    font-weight:700;

}

.region-card__image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.35s;

}

.region-card:hover img{

    transform:scale(1.08);

}

.region-card__content{

    padding:18px;

}

.region-card__content h3{

    margin:0 0 8px;

    font-size:18px;

}
.region-card h3{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.region-card__content span{

    color:#777;

    font-size:15px;

}
.region-weather{

    position:absolute;

    top:16px;

    right:16px;

    padding:8px 14px;

    border-radius:999px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(10px);

    font-size:13px;

    font-weight:700;

}
.region-meta{

    margin-top:12px;

    padding:0;

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:8px;
    color:#737373;
    font-size: 14px;

}
.region-meta li{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:14px;

    color:#6b7280;

}
.region-meta li i{

    color:var(--color-primary);

    width:16px;

    text-align:center;

    font-size:13px;

}
.region-meta li span{

    line-height:1.4;

}
.region-card__link{

    display:block;

    color:inherit;

    text-decoration:none;

    height:100%;

}
.region-card{

    transition:

        transform .25s,

        box-shadow .25s;

}

.region-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}
/* ========================================
   FEATURED
======================================== */

.featured{

    padding:120px 0;

    background:#fff;

}

.featured-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:50px;

}

/* ========================================
   CARD
======================================== */

.place-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

}

.place-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.place-card__link{

    display:block;

    color:inherit;

    text-decoration:none;

}

/* ========================================
   IMAGE
======================================== */

.place-card__image{

    position:relative;

    height:230px;

    overflow:hidden;

}

.place-card__image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.place-card:hover img{

    transform:scale(1.08);

}

.place-card__overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.35),
        rgba(0,0,0,0)
    );

}

/* ========================================
   CATEGORY
======================================== */

.place-card__category{

    position:absolute;

    top:18px;

    left:18px;

    display:flex;

    align-items:center;

    gap:8px;

    padding:8px 14px;

    background:#4E7C35;

    color:#fff;

    font-size:13px;

    font-weight:700;

    border-radius:999px;

    z-index:5;

}

/* ========================================
   BADGE
======================================== */

.place-card__badge{

    position:absolute;

    left:18px;

    bottom:18px;

    padding:8px 14px;

    background:#fff;

    color:#222;

    font-size:13px;

    font-weight:700;

    border-radius:999px;

    z-index:5;

}

/* ========================================
   FAVORITE
======================================== */

.place-card__favorite{

    position:absolute;

    top:18px;

    right:18px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(10px);

    cursor:pointer;

    transition:.25s;

    z-index:5;

}

.place-card__favorite:hover{

    background:#4E7C35;

    color:#fff;

}

/* ========================================
   GALLERY
======================================== */

.place-card__gallery{

    position:absolute;

    right:18px;

    bottom:18px;

    display:flex;

    align-items:center;

    gap:6px;

    padding:8px 12px;

    border-radius:999px;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:13px;

    z-index:5;

}

/* ========================================
   CONTENT
======================================== */

.place-card__content{

    padding:24px;

}

.place-card__content h3{

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:24px;

    margin-bottom:10px;

}

.place-card__arrow{

    transition:.25s;

    color:#4E7C35;

}

.place-card:hover .place-card__arrow{

    transform:translateX(6px);

}

.place-card__location{

    display:flex;

    align-items:center;

    gap:8px;

    color:#777;

    margin-bottom:18px;

}

/* ========================================
   META
======================================== */

.place-card__meta{

    list-style:none;

    padding:0;

    margin:0;

    display:flex;

    flex-wrap:wrap;

    gap:16px;

}

.place-card__meta li{

    display:flex;

    align-items:center;

    gap:8px;

    color:#666;

    font-size:14px;

}

.place-card__meta i{

    color:#F4A629;

}

/* ========================================
   FEATURES
======================================== */

.place-card__features{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:18px;

}

.place-card__features span{

    display:flex;

    align-items:center;

    gap:8px;

    padding:8px 12px;

    background:#f7f7f7;

    border-radius:999px;

    font-size:13px;

    color:#555;

}

/* ========================================
   FOOTER
======================================== */

.place-card__footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:22px;

    padding-top:18px;

    border-top:1px solid #efefef;

}

.status-open{

    display:flex;

    align-items:center;

    gap:8px;

    color:#4E7C35;

    font-size:14px;

    font-weight:600;

}

.status-open i{

    color:#4E7C35;

}

.place-card__price{

    padding:8px 14px;

    background:#edf8e8;

    color:#4E7C35;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

}
.place-card__favorite{

    position:absolute;

    top:18px;

    right:18px;

    width:44px;

    height:44px;

    border:none;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    color:#444;

    cursor:pointer;

    transition:.25s;

    z-index:20;

}

.place-card__favorite:hover{

    transform:scale(1.08);

    background:#fff;

}

.place-card__favorite.active{

    color:#e53935;

}

.place-card__favorite.active i{

    font-weight:900;

}
/*==================================
CATEGORIES
==================================*/

.categories{

    padding:90px 0;

    background:#fafaf7;

}

.categories-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:28px;

}

.category-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:20px;

    padding:36px 20px;

    text-align:center;

    text-decoration:none;

    color:#222;

    transition:
        transform .25s,
        box-shadow .25s,
        border-color .25s;

}

.category-card:hover{

    transform:translateY(-6px);

    border-color:#4E7C35;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.category-card__icon{

    font-size:42px;

    margin-bottom:18px;

}

.category-card h3{

    font-size:18px;

    margin:0;

}

.category-card__count{

    display:block;

    margin-top:10px;

    font-size:14px;

    color:#7a7a7a;

    font-weight:500;

}
.category-card:hover .category-icon{

    transform:scale(1.12);

}


/*======================================
EVENTS
======================================*/

.events{

    padding:120px 0;

    background:#fff;

}

.events-layout{

    display:grid;

    grid-template-columns:1fr 340px;

    gap:50px;

    margin-top:50px;

}

/*======================================
TIMELINE
======================================*/

.events-day{

    margin-bottom:60px;

}

.events-day__title{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

    padding-bottom:15px;

    border-bottom:1px solid #ececec;

}

.events-day__title span{

    font-size:36px;

    font-weight:800;

    color:#222;

}

.events-day__title small{

    color:#8a8a8a;

    font-size:15px;

}

/*======================================
ITEM
======================================*/

.event-item{

    background:#fff;

    border:1px solid #ececec;

    border-radius:24px;

    margin-bottom:20px;

    overflow:hidden;

    transition:.3s;

}

.event-item:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.event-item__link{

    display:grid;

    grid-template-columns:90px 170px 1fr;

    text-decoration:none;

    color:inherit;

}

/*======================================
DATE
======================================*/

.event-date{

    background:#4E7C35;

    color:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}

.event-date strong{

    font-size:36px;

    line-height:1;

}

.event-date span{

    margin-top:6px;

    font-size:14px;

    font-weight:700;

    letter-spacing:.08em;

}

.event-date small{

    margin-top:4px;

    opacity:.8;

    font-size:12px;

}

/*======================================
IMAGE
======================================*/

.event-image{

    position:relative;

    overflow:hidden;

}

.event-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.event-item:hover .event-image img{

    transform:scale(1.08);

}

.event-category{

    position:absolute;

    top:14px;

    left:14px;

    background:#4E7C35;

    color:#fff;

    padding:7px 12px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    display:flex;

    align-items:center;

    gap:6px;

}

.event-favorite{

    position:absolute;

    top:14px;

    right:14px;

    width:40px;

    height:40px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(8px);

    cursor:pointer;

    transition:.25s;

}

.event-favorite:hover{

    color:#e53935;

    transform:scale(1.08);

}

/*======================================
CONTENT
======================================*/

.event-content{

    padding:24px 28px;

}

.event-content h3{

    font-size:28px;

    margin-bottom:14px;

}

.event-content p{

    margin:15px 0;

    color:#666;

    line-height:1.7;

}

/*======================================
META
======================================*/

.event-meta{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:14px;

}

.event-meta span{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:14px;

    color:#666;

}

.event-meta i{

    color:#4E7C35;

}

/*======================================
TAGS
======================================*/

.event-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:18px;

}

.event-tags span{

    padding:8px 14px;

    border-radius:999px;

    background:#f7f7f7;

    color:#555;

    font-size:13px;

    display:flex;

    align-items:center;

    gap:6px;

}

/*======================================
FOOTER
======================================*/

.event-footer{

    margin-top:22px;

    padding-top:18px;

    border-top:1px solid #ececec;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.event-left,

.event-right{

    display:flex;

    align-items:center;

    gap:16px;

}

.event-footer span{

    display:flex;

    align-items:center;

    gap:6px;

    font-size:14px;

}

.event-interest{

    color:#d63b53;

}

.event-weather{

    color:#f4a629;

}

.event-status{

    padding:8px 14px;

    background:#fff3d8;

    color:#d97a00;

    border-radius:999px;

    font-weight:700;

}

/*======================================
SIDEBAR
======================================*/

.events-sidebar{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.event-widget{

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    padding:30px;

    transition:.3s;

}

.event-widget:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.06);

}

.event-widget i{

    font-size:26px;

    color:#4E7C35;

    margin-bottom:18px;

}

.event-widget h3{

    font-size:22px;

    margin-bottom:10px;

}

.event-widget strong{

    display:block;

    font-size:40px;

    color:#4E7C35;

    margin-bottom:12px;

}

.event-widget p{

    color:#666;

    line-height:1.7;

    margin-bottom:20px;

}

.event-widget a{

    color:#4E7C35;

    text-decoration:none;

    font-weight:700;

}

.event-widget--primary{

    background:#4E7C35;

    color:#fff;

}

.event-widget--primary i,

.event-widget--primary strong,

.event-widget--primary h3,

.event-widget--primary p{

    color:#fff;

}

.event-widget--primary .btn-primary{

    width:100%;

    justify-content:center;

    margin-top:10px;

}
.event-widget__icon{

    width:62px;

    height:62px;

    border-radius:18px;

    background:rgba(255,255,255,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}

.event-widget__icon i{

    font-size:28px;

    color:#fff;

}

.event-widget__label{

    display:inline-block;

    padding:7px 14px;

    border-radius:999px;

    background:rgba(255,255,255,.12);

    color:#fff;

    font-size:12px;

    font-weight:700;

    letter-spacing:.08em;

    text-transform:uppercase;

    margin-bottom:16px;

}

.event-widget__benefits{

    list-style:none;

    margin:24px 0;

    padding:0;

    display:flex;

    flex-direction:column;

    gap:12px;

}

.event-widget__benefits li{

    display:flex;

    align-items:center;

    gap:10px;

    color:#fff;

    font-size:15px;

}

.event-widget__benefits i{

    font-size:14px;

    color:#A8E06B;

    margin:0;

}

.event-widget--primary .btn-primary{

    width:100%;

    justify-content:center;

    margin-top:8px;

    background:#fff;

    color:#4E7C35;

    font-weight:700;

}

.event-widget--primary .btn-primary:hover{

    background:#f4f4f4;

}
/*======================================
TRENDING
======================================*/

.trending{

    padding:120px 0;

    background:#f8f8f5;

}

.trending-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:35px;

    align-items:start;

    margin-top:50px;

}

/*======================================
FEATURED CARD
======================================*/

.trending-featured{

    position:relative;

    border-radius:32px;

    overflow:hidden;

    min-height:720px;

    background:#ddd;

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.trending-featured>a{

    display:block;

    width:100%;

    height:100%;

    color:#fff;

    text-decoration:none;

}

.trending-featured img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.trending-featured:hover img{

    transform:scale(1.06);

}

.trending-featured::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.05) 100%
    );

}

.trending-overlay{

    position:absolute;

    left:50px;

    right:50px;

    bottom:50px;

    z-index:5;

}

.trending-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(16px);

    color:#fff;

    font-size:14px;

    font-weight:700;

    margin-bottom:24px;

}

.trending-overlay h3{

    font-size:60px;

    line-height:1.05;

    font-weight:900;

    margin-bottom:22px;

    color:#fff;

}

.trending-overlay p{

    max-width:620px;

    font-size:20px;

    line-height:1.8;

    color:rgba(255,255,255,.92);

    margin-bottom:35px;

}
/*======================================
FEATURED STATS
======================================*/

.trending-stats{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-bottom:35px;

}

.trending-stats span{

    display:flex;

    align-items:center;

    gap:8px;

    padding:12px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.14);

    backdrop-filter:blur(14px);

    color:#fff;

    font-size:14px;

    font-weight:600;

}

.trending-stats i{

    color:#F4A629;

}

.trending-overlay .btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:0 26px;

    height:52px;

}

/*======================================
LIST
======================================*/

.trending-list{

    display:flex;

    flex-direction:column;

    gap:22px;

}

/*======================================
ITEM
======================================*/

.trending-item{

    display:flex;

    align-items:center;

    gap:20px;

    padding:26px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:24px;

    text-decoration:none;

    color:inherit;

    transition:.3s;

}

.trending-item:hover{

    transform:translateX(8px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.trending-item__icon{

    width:64px;

    height:64px;

    border-radius:18px;

    background:#eef6ea;

    color:#4E7C35;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    font-size:24px;

    transition:.3s;

}

.trending-item:hover .trending-item__icon{

    background:#4E7C35;

    color:#fff;

}
/*======================================
ITEM CONTENT
======================================*/

.trending-item__content{

    flex:1;

    min-width:0;

}

.trending-item__content span{

    display:block;

    font-size:13px;

    font-weight:600;

    color:#8b8b8b;

    margin-bottom:6px;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.trending-item__content h4{

    font-size:22px;

    line-height:1.3;

    font-weight:700;

    color:#222;

    margin-bottom:8px;

    transition:.25s;

}

.trending-item:hover h4{

    color:#4E7C35;

}

.trending-item__content small{

    display:block;

    font-size:14px;

    color:#777;

    line-height:1.6;

}

/*======================================
ARROW
======================================*/

.trending-item > i{

    font-size:18px;

    color:#a5a5a5;

    transition:.25s;

}

.trending-item:hover > i{

    transform:translateX(6px);

    color:#4E7C35;

}

/*======================================
ANIMATIONS
======================================*/

.trending-featured:hover .btn-primary{

    transform:translateY(-2px);

}

.trending-featured .btn-primary{

    transition:.25s;

}

.trending-badge{

    transition:.25s;

}

.trending-featured:hover .trending-badge{

    transform:translateY(-3px);

}

.trending-featured:hover .trending-stats span{

    background:rgba(255,255,255,.20);

}
/*======================================
RESPONSIVE
======================================*/

@media (max-width:1400px){

    .trending-grid{

        grid-template-columns:1.6fr 1fr;

    }

    .trending-overlay h3{

        font-size:52px;

    }

}

@media (max-width:1200px){

    .trending-grid{

        grid-template-columns:1fr;

    }

    .trending-list{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:20px;

    }

    .trending-featured{

        min-height:620px;

    }

}

@media (max-width:992px){

    .trending{

        padding:90px 0;

    }

    .trending-featured{

        min-height:520px;

    }

    .trending-overlay{

        left:35px;

        right:35px;

        bottom:35px;

    }

    .trending-overlay h3{

        font-size:42px;

    }

    .trending-overlay p{

        font-size:17px;

    }

    .trending-stats{

        gap:10px;

    }

    .trending-stats span{

        font-size:13px;

        padding:10px 14px;

    }

}

@media (max-width:768px){

    .trending-list{

        grid-template-columns:1fr;

    }

    .trending-item{

        padding:20px;

    }

    .trending-item__icon{

        width:54px;

        height:54px;

        font-size:20px;

    }

    .trending-item__content h4{

        font-size:19px;

    }

    .trending-overlay{

        left:25px;

        right:25px;

        bottom:25px;

    }

    .trending-overlay h3{

        font-size:34px;

    }

    .trending-overlay p{

        font-size:16px;

        line-height:1.6;

    }

    .trending-featured{

        min-height:450px;

    }

}

@media (max-width:576px){

    .trending{

        padding:70px 0;

    }

    .trending-featured{

        border-radius:22px;

        min-height:380px;

    }

    .trending-overlay{

        left:20px;

        right:20px;

        bottom:20px;

    }

    .trending-badge{

        font-size:12px;

        padding:8px 14px;

    }

    .trending-overlay h3{

        font-size:28px;

        margin-bottom:14px;

    }

    .trending-overlay p{

        display:none;

    }

    .trending-stats{

        gap:8px;

        margin-bottom:22px;

    }

    .trending-stats span{

        font-size:12px;

        padding:8px 12px;

    }

    .trending-item{

        gap:16px;

        padding:18px;

    }

    .trending-item__icon{

        width:48px;

        height:48px;

        border-radius:14px;

    }

    .trending-item__content span{

        font-size:11px;

    }

    .trending-item__content h4{

        font-size:17px;

        margin-bottom:4px;

    }

    .trending-item__content small{

        font-size:13px;

    }

}
/*======================================
ARTICLES
======================================*/

.articles{

    padding:120px 0;

    background:#fff;

}

.articles-layout{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:35px;

    margin-top:50px;

}

/*======================================
FEATURED
======================================*/

.article-featured{

    background:#fff;

    border:1px solid #ececec;

    border-radius:30px;

    overflow:hidden;

    transition:.3s;

}

.article-featured:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.article-featured>a{

    display:block;

    color:inherit;

    text-decoration:none;

}

.article-featured__image{

    position:relative;

    overflow:hidden;

}

.article-featured__image img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.45s;

}

.article-featured:hover img{

    transform:scale(1.05);

}

.article-badge{

    position:absolute;

    top:25px;

    left:25px;

    background:#4E7C35;

    color:#fff;

    padding:10px 18px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

}

.article-featured__content{

    padding:35px;

}

.article-category{

    display:inline-block;

    margin-bottom:14px;

    color:#4E7C35;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.article-featured__content h3{

    font-size:44px;

    line-height:1.2;

    margin-bottom:18px;

}

.article-featured__content p{

    color:#666;

    line-height:1.8;

    margin:22px 0;

}

.article-meta{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-bottom:20px;

}

.article-meta span{

    display:flex;

    align-items:center;

    gap:8px;

    color:#777;

    font-size:14px;

}

.article-meta i{

    color:#4E7C35;

}

.article-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:30px;

}

.article-tags span{

    padding:8px 14px;

    background:#f6f6f6;

    border-radius:999px;

    font-size:13px;

    color:#666;

}

/*======================================
LIST
======================================*/

.articles-list{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.article-item{

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    overflow:hidden;

    transition:.3s;

}

.article-item:hover{

    transform:translateX(6px);

    box-shadow:0 15px 40px rgba(0,0,0,.07);

}

.article-item>a{

    display:flex;

    gap:18px;

    padding:18px;

    color:inherit;

    text-decoration:none;

}

.article-item img{

    width:120px;

    height:120px;

    border-radius:16px;

    object-fit:cover;

    flex-shrink:0;

}

.article-item__content{

    flex:1;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.article-item__content>span{

    color:#4E7C35;

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:10px;

}

.article-item__content h4{

    font-size:23px;

    line-height:1.35;

    margin-bottom:14px;

    transition:.25s;

}

.article-item:hover h4{

    color:#4E7C35;

}

.article-item__meta{

    display:flex;

    gap:18px;

}

.article-item__meta small{

    display:flex;

    align-items:center;

    gap:6px;

    color:#777;

    font-size:13px;

}

.article-item__meta i{

    color:#4E7C35;

}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:1200px){

    .articles-layout{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .article-featured__image img{

        height:280px;

    }

    .article-featured__content{

        padding:25px;

    }

    .article-featured__content h3{

        font-size:30px;

    }

    .article-item>a{

        flex-direction:column;

    }

    .article-item img{

        width:100%;

        height:180px;

    }

}

/* ========================================
   REZKOVI
======================================== */

.rezkovi{

    padding:140px 0;

    background:linear-gradient(180deg,#fff 0%,#f8fbf6 100%);

}

.rezkovi-wrapper{

    display:grid;

    grid-template-columns:1.1fr 1fr;

    gap:90px;

    align-items:center;

}

.rezkovi-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.rezkovi-image img{

    width:100%;

    max-width:620px;

    height:auto;

    display:block;

}

.rezkovi-content h2{

    margin:14px 0 24px;

    font-size:58px;

    line-height:1.08;

    font-weight:900;

    color:#202020;

}

.rezkovi-content p{

    margin:0;

    max-width:620px;

    font-size:18px;

    line-height:1.9;

    color:#666;

}

/* ========================================
   STATS
======================================== */

.rezkovi-stats{

    display:flex;

    gap:18px;

    margin:40px 0;

}

.rezkovi-stat{

    flex:1;

    padding:24px;

    background:#fff;

    border:1px solid #edf0ec;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.04);

    text-align:center;

}

.rezkovi-stat strong{

    display:block;

    font-size:34px;

    font-weight:800;

    color:#4E7C35;

    margin-bottom:6px;

}

.rezkovi-stat span{

    font-size:14px;

    color:#888;

}

/* ========================================
   BENEFITY
======================================== */

.rezkovi-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:16px;

    margin-bottom:45px;

}

.rezkovi-feature{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px 20px;

    background:#fff;

    border:1px solid #edf0ec;

    border-radius:16px;

    transition:.25s;

}

.rezkovi-feature:hover{

    transform:translateY(-4px);

    box-shadow:0 14px 30px rgba(0,0,0,.08);

}

.rezkovi-feature i{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:#edf6e8;

    color:#4E7C35;

    font-size:18px;

}

.rezkovi-feature span{

    font-size:16px;

    font-weight:600;

    color:#222;

}

/* ========================================
   BUTTONS
======================================== */

.rezkovi-actions{

    display:flex;

    gap:18px;

    align-items:center;

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:56px;

    padding:0 28px;

    border-radius:16px;

    background:#fff;

    border:1px solid #dfe6da;

    color:#222;

    text-decoration:none;

    font-weight:700;

    transition:.25s;

}

.btn-secondary:hover{

    background:#f4f7f2;

    border-color:#4E7C35;

    color:#4E7C35;

}

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:1100px){

    .rezkovi-wrapper{

        grid-template-columns:1fr;

        gap:60px;

    }

    .rezkovi-content{

        text-align:center;

    }

    .rezkovi-content p{

        margin:auto;

    }

    .rezkovi-stats{

        justify-content:center;

    }

    .rezkovi-actions{

        justify-content:center;

    }

}

@media(max-width:768px){

    .rezkovi{

        padding:90px 0;

    }

    .rezkovi-content h2{

        font-size:40px;

    }

    .rezkovi-stats{

        flex-direction:column;

    }

    .rezkovi-features{

        grid-template-columns:1fr;

    }

    .rezkovi-actions{

        flex-direction:column;

    }

    .rezkovi-actions a{

        width:100%;

    }

}
/*======================================
    STATS
======================================*/

.stats{

    padding:140px 0;

    background:#4E7C35;

    position:relative;

    overflow:hidden;

}

.stats::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top right,rgba(255,255,255,.08),transparent 45%),
        radial-gradient(circle at bottom left,rgba(255,255,255,.05),transparent 35%);

    pointer-events:none;

}

.stats .container{

    position:relative;

    z-index:2;

}

.stats .section-heading{

    max-width:820px;

    margin:0 0 70px;

    text-align:left;

}

.stats .section-subtitle{

    color:#d8efc8;

}

.stats h2{

    margin:16px 0 22px;

    color:#fff;

}

.stats .section-description{

    margin:0;

    max-width:720px;

    color:rgba(255,255,255,.82);

    font-size:18px;

    line-height:1.8;

}

/*======================================
    GRID
======================================*/

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.stat-card{

    padding:36px 26px;

    border-radius:24px;

    text-align:center;

    background:rgba(255,255,255,.13);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(18px);

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.18);

    box-shadow:0 25px 45px rgba(0,0,0,.18);

}

.stat-card:first-child{

    grid-column:span 2;

}

.stat-card:first-child strong{

    font-size:72px;

}

.stat-card i{

    width:58px;

    height:58px;

    margin:0 auto 18px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:24px;

}

.stat-card strong{

    display:block;

    margin-bottom:10px;

    font-size:54px;

    line-height:1;

    font-weight:900;

    color:#fff;

}

.stat-card span{

    display:block;

    font-size:15px;

    font-weight:600;

    color:rgba(255,255,255,.85);

}

/*======================================
    CTA
======================================*/

.stats-bottom{

    max-width:760px;

    margin:80px auto 0;

    text-align:center;

}

.stats-bottom p{

    margin-bottom:40px;

    font-size:19px;

    line-height:1.8;

    color:rgba(255,255,255,.86);

}

.stats-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

}

.stats .btn-primary{

    min-width:220px;

}

.stats .btn-secondary{

    min-width:220px;

    background:transparent;

    border:1px solid rgba(255,255,255,.22);

    color:#fff;

}

.stats .btn-secondary:hover{

    background:#fff;

    color:#4E7C35;

}

/*======================================
    RESPONSIVE
======================================*/

@media(max-width:1200px){

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .stat-card:first-child{

        grid-column:auto;

    }

    .stat-card:first-child strong{

        font-size:54px;

    }

}

@media(max-width:768px){

    .stats{

        padding:90px 0;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .stats-buttons{

        flex-direction:column;

    }

    .stats-buttons a{

        width:100%;

    }

    .stat-card strong{

        font-size:42px;

    }

    .stats h2{

        font-size:40px;

    }

}
/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:1200px){

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .stats{

        padding:90px 0;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .stat-card strong{

        font-size:40px;

    }

    .stats-buttons{

        flex-direction:column;

    }

    .stats-buttons a{

        width:100%;

    }

}

/*==================================
CTA
==================================*/

.cta{

    padding:120px 0;

    background:#f7f8f6;

}

.cta-wrapper{

    background:#fff;

    border-radius:30px;

    padding:70px;

    display:grid;

    grid-template-columns:1.4fr 1fr;

    gap:50px;

    align-items:center;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.cta-content h2{

    margin:15px 0 25px;

    font-size:48px;

    line-height:1.15;

}

.cta-content p{

    color:#666;

    font-size:18px;

    line-height:1.8;

}

.cta-buttons{

    margin-top:40px;

    display:flex;

    gap:18px;

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 26px;

    border-radius:14px;

    border:2px solid #4E7C35;

    color:#4E7C35;

    text-decoration:none;

    font-weight:700;

    transition:.25s;

}

.btn-secondary:hover{

    background:#4E7C35;

    color:#fff;

}

.cta-image{

    text-align:center;

}

.cta-image img{

    width:100%;

    max-width:450px;

}

.cta-features{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px 30px;
    margin:35px 0;
    padding:0;
    list-style:none;
}

.cta-features li{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:16px;
    font-weight:600;
    color:#1f2937;
}

.cta-features i{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#eef7ea;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    flex-shrink:0;
}

/*==================================
FOOTER
==================================*/

.site-footer{

    position:relative;

    margin-top:180px;

    background:#20351d;

    color:#fff;

    padding: 20px 0;

}

.site-footer::before{

    content:"";

    position:absolute;

    top:-140px;

    left:0;

    width:100%;

    height:140px;

    background:#31522c;

    clip-path:polygon(
        0 100%,
        0 60%,
        18% 35%,
        35% 70%,
        55% 25%,
        75% 65%,
        100% 40%,
        100% 100%
    );

}

.site-footer::after{

    content:"";

    position:absolute;

    top:-90px;

    left:0;

    width:100%;

    height:90px;

    background:#20351d;

    clip-path:polygon(
        0 100%,
        0 45%,
        15% 65%,
        32% 20%,
        48% 60%,
        67% 18%,
        82% 58%,
        100% 35%,
        100% 100%
    );

}

.footer-top{

    display:grid;

    grid-template-columns:2fr repeat(4,1fr);

    gap:60px;

    padding-bottom:60px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-logo img{

    height:55px;

    margin-bottom:25px;

}

.footer-about p{

    color:rgba(255,255,255,.75);

    line-height:1.8;

    margin-bottom:30px;

}

.footer-social{

    display:flex;

    gap:14px;

}

.footer-social a{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    transition:.25s;

}

.footer-social a:hover{

    background:var(--primary);

}

.footer-column h3{

    margin-bottom:22px;

    font-size:20px;

}

.footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-column li{

    margin-bottom:14px;

}

.footer-column a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    transition:.25s;

}

.footer-column a:hover{

    color:#fff;

    padding-left:6px;

}

.footer-links{

    padding:45px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-links>div+div{

    margin-top:35px;

}

.footer-links h4{

    margin-bottom:18px;

}

.footer-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.footer-tags a{

    padding:10px 16px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    transition:.25s;

}

.footer-tags a:hover{

    background:var(--primary);

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:35px;

    color:rgba(255,255,255,.6);

    font-size:15px;

}

.footer-bottom strong{

    color:#fff;

}

/*==================================================
RESPONSIVE
==================================================*/

/* Notebook */

@media (max-width:1400px){

    .container{

        max-width:1200px;

    }

}

/* Tablet */

@media (max-width:1200px){

    h1{

        font-size:58px;

    }

    h2{

        font-size:42px;

    }

    .hero__content{

        gap:50px;

    }

    .hero__right{

        width:45%;

    }

    .categories-grid{

        grid-template-columns:repeat(4,1fr);

    }

    .regions-grid{

        grid-template-columns:repeat(3,1fr);

    }

    .featured-grid{

        grid-template-columns:repeat(3,1fr);

    }

    .stats-grid{

        grid-template-columns:repeat(3,1fr);

    }

    .footer-top{

        grid-template-columns:repeat(3,1fr);

    }

    .footer-about{

        grid-column:span 3;

    }

    .events-layout,
    .articles-layout,
    .trending-grid,
    .rezkovi-wrapper,
    .cta-wrapper{

        grid-template-columns:1fr;

    }

}

/*==================================================
MOBILE
==================================================*/

@media (max-width:992px){

    .site-nav{

        display:none;

    }

    .site-actions{

        display:none;

    }

    .menu-toggle{

        display:block;

    }

    .hero{

        min-height:auto;

        padding:180px 0 80px;

    }

    .hero__content{

        flex-direction:column;

        text-align:center;

    }

    .hero__left{

        max-width:100%;

    }

    .hero h1{

        font-size:52px;

    }

    .hero p{

        font-size:18px;

    }

    .hero-search{

        flex-direction:column;

    }

    .hero-search input,
    .hero-search select,
    .hero-search button{

        width:100%;

    }

    .hero__right{

        width:100%;

    }

    .trip-card{

        position:relative;

        right:auto;

        bottom:auto;

        margin:50px auto 0;

    }

    .hero-categories{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:15px;

    }

    .categories-grid{

        grid-template-columns:repeat(3,1fr);

    }

    .regions-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .featured-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-top{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-about{

        grid-column:span 2;

    }

}

/*==================================================
PHONE
==================================================*/

@media (max-width:768px){

    .container{

        padding:0 20px;

    }

    section{

        padding:70px 0 !important;

    }

    h1{

        font-size:42px !important;

    }

    h2{

        font-size:34px !important;

    }

    .section-heading{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;

    }

    .categories-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .regions-grid{

        grid-template-columns:1fr;

    }

    .featured-grid{

        grid-template-columns:1fr;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .footer-top{

        grid-template-columns:1fr;

        gap:40px;

    }

    .footer-about{

        grid-column:auto;

    }

    .footer-bottom{

        flex-direction:column;

        gap:15px;

        text-align:center;

    }

    .footer-tags{

        gap:10px;

    }

    .cta-buttons{

        flex-direction:column;

    }

    .hero-categories{

        grid-template-columns:1fr;

    }

}
/*==================================================
SMALL PHONE
==================================================*/

@media (max-width:480px){

    .hero{

        padding-top:150px;

    }

    h1{

        font-size:34px !important;

    }

    h2{

        font-size:28px !important;

    }

    .categories-grid{

        grid-template-columns:1fr;

    }

    .event-item{

        flex-direction:column;

    }

    .event-date{

        width:70px;

    }

    .article-item{

        flex-direction:column;

    }

    .article-item img{

        width:100%;

        height:220px;

    }

    .place-card__meta{

        flex-direction:column;

        gap:10px;

    }

}