* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
}

:root {
    --text-color: #fff;
    --bg-color: #000;
    --main-color: #ffa343;
    --main-nav-color: #DD6348;

    --h1-font: 6rem;
    --h2-font: 3rem;
    --p-font: 1rem;
}

body {
    color: var(--text-color);
    background: var(--bg-color);
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: transparent;
    padding: 27px 17%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .50s ease;
}

.logo {
    font-size: 23px;
    color: var(--text-color);
    font-weight: 700;
}

span {
    color: var(--main-nav-color);
}

.navbar {
    display: flex;
}

.navbar a {
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 500;
    margin: 15px 22px;
    transition: all .50s ease;
}

.navbar a:hover {
    color: var(--main-nav-color);
}

.h-right {
    display: flex;
    align-items: center;
}

.h-right a:first-child {
    color: var(--text-color);
    font-size: var(--p-font);
    margin-right: 20px;
}

.h-right a {
    vertical-align: middle;
    font-size: 20px;
    color: var(--text-color);
    margin-right: 18px;
    margin-left: 5px;
    transition: all .50s ease;
}

.h-right a:hover {
    color: var(--main-color);
    transform: translateY(-3px);
}

#menu-icon {
    color: var(--text-color);
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
    display: none;
}

header.sticky {
    padding: 8px 17%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    transition: all .5s ease;
}

/* ===== HOME SECTION ===== */
section {
    padding: 70px 17% 60px;
}

.home {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Slider images */
.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.3s ease-in-out, transform 6s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Overlay gradient for readability */
.home::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    z-index: 0;
}

/* Text overlay */
.home-text {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(-50%); }
}

.home-text h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--main-color);
}

.home-text h1 {
    font-size: var(--h1-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.home-text p {
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: #ffffffc9;
    margin-bottom: 35px;
}

.btn {
    display: inline-block;
    padding: 13px 40px;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all .50s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateX(10px);
    border: 2px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
}

/* ===== FEATURE, HOLIDAY, CULTURE, FOOTER (unchanged except polish) ===== */
.feature-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.row-img {
    overflow: hidden;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    cursor: pointer;
}

.row-img img {
    width: 100%;
    transition: transform 0.7s;
}

.row-img img:hover {
    transform: scale(1.2);
}

.feature-content h4 {
    font-size: 17px;
    font-weight: 500;
    transition: all .50s ease;
    cursor: pointer;
}

.feature-content h4:hover {
    color: var(--main-color);
}

.holiday, .culture {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 9rem;
}

.holiday-img img, .culture-img img {
    width: 100%;
    border-radius: 10px;
}

.holiday-text h5, .culture-text h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
}

.holiday-text h2, .culture-text h2 {
    font-size: 39px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.holiday-text p, .culture-text p {
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: #ffffffab;
    margin-bottom: 35px;
}

.footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 2rem;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width:1700px) {
    header { padding: 18px 8%; }
    header.sticky { padding: 7px 8%; }
    section { padding: 50px 8% 40px; }
}

@media (max-width:1200px) {
    header { padding: 14px 5%; }
    header.sticky { padding: 7px 5%; }
    section { padding: 45px 5% 35px; }
    :root {
        --h1-font: 4.6rem;
        --h2-font: 2.8rem;
        --p-font: 15px;
    }
    .home { height: 90vh; }
}

@media (max-width:1050px) {
    .feature-content { gap: 1.5rem; }
    .holiday, .culture { gap: 3rem; }
    #menu-icon { display: block; }
    .navbar {
        position: absolute;
        width: 100%;
        height: 100vh;
        padding: 40px 60px;
        top: 0;
        left: 100%;
        display: flex;
        flex-direction: column;
        background: var(--bg-color);
        transition: all .50s ease;
    }
    .navbar a {
        display: block;
        color: #979797;
        margin-bottom: 40px;
        font-size: 2.2rem;
        font-weight: 400;
    }
    .navbar.open { left: 0; }
}

@media (max-width:800px) {
    .holiday, .culture, .newsletter-content { grid-template-columns: 1fr; }
    .home-text { max-width: 90%; }
}

@media (max-width:600px) {
    :root {
        --h1-font: 3.5rem;
        --h2-font: 2.1rem;
    }
    .home { height: 85vh; }
}

@media (max-width:450px) {
    header { padding: 12px 3%; }
    header.sticky { padding: 7px 3%; }
    section { padding: 60px 3% 50px; }
    .home-text h1 { font-size: 2.8rem; }
    .home-text p { font-size: 0.9rem; }
}

@media (max-width:430px) {
    header { padding: 10px 2%; font-size: 15px; }
    .logo { font-size: 13px; font-weight: 300; }
    .h-right a { font-size: 10px; margin-right: 2px; }
}
