* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.hero {
    /* Placeholder image for architecture */
    background-image: url('../back.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 751px;
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: overlay;
    animation-name: slideAnimation;
    animation-iteration-count: infinite;
    animation-duration: 10s;
    background-size: cover;
}

.hero-teksti {
    width: 100%;
    height: 551px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-teksti h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 50px;
    padding-bottom: 20px;
}

.hero-teksti p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    width: 50%;
    line-height: 1.8;
}

.hero-teksti button {
    margin-top: 30px;
    width: 165px;
    height: 45px;
    border: none;
    background-color: rgb(198, 176, 105);
    color: white;
    font-size: 13px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

.hero-teksti button:hover {
    background-color: transparent;
    border: 1px solid white;
}

/* Breadcrumb */
.breadcrumb {
    width: 100%;
    padding: 15px 200px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb a {
    text-decoration: none;
    color: #777;
    font-size: 14px;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: rgb(198, 176, 105);
}

.breadcrumb span {
    color: #999;
    font-size: 14px;
    margin: 0 8px;
}

.breadcrumb .current {
    color: rgb(198, 176, 105);
    font-size: 14px;
    font-weight: 600;
}

/* Intro */
.natyra-intro {
    text-align: center;
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.natyra-intro h2 {
    font-size: 38px;
    color: #222;
    margin-bottom: 20px;
}

.natyra-intro p {
    font-size: 15px;
    color: #777;
    line-height: 1.9;
}

.natyra-intro .accent-line {
    width: 80px;
    height: 3px;
    background-color: rgb(198, 176, 105);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Stats */
.stats-bar {
    background-color: #04091e;
    padding: 40px 0;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 180px;
}

.stat-item .stat-number {
    font-size: 40px;
    color: rgb(198, 176, 105);
    font-weight: 700;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 14px;
    color: #aaa;
    margin-top: 8px;
}

/* Destinations Grid */
.destinations {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.destinations .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.destinations .section-header h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 15px;
}

.destinations .section-header p {
    font-size: 15px;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dest-card {
    border-radius: 15px;
    overflow: hidden;
    border: 0.5px solid #e0e0e0;
    transition: 0.4s ease;
    background: white;
    cursor: pointer;
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.dest-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dest-card:hover .dest-card-img img {
    transform: scale(1.08);
}

.dest-card-body {
    padding: 22px;
}

.dest-card-body h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.dest-card:hover .dest-card-body h3 {
    color: rgb(198, 176, 105);
}

.dest-card-body p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

.dest-card-body .card-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    background-color: rgba(198, 176, 105, 0.12);
    color: rgb(165, 145, 70);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Featured Section */
.featured-spot {
    background-color: rgb(198, 176, 105);
    padding: 80px 0;
}

.featured-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 0 40px;
}

.featured-img {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.featured-text {
    flex: 1;
    color: white;
}

.featured-text .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.85;
}

.featured-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-text p {
    font-size: 15px;
    line-height: 1.9;
    opacity: 0.92;
    margin-bottom: 25px;
}

.featured-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.featured-text ul li {
    padding: 8px 0;
    font-size: 14px;
    opacity: 0.9;
}

.featured-text ul li i {
    color: #fff;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.btn-white {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #04091e;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
}

/* Gallery */
.gallery-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-section .section-header h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 15px;
}

.gallery-section .section-header p {
    font-size: 15px;
    color: #777;
}

.natyra-gallery {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
}

.natyra-gallery .g-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.natyra-gallery .g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.natyra-gallery .g-item:hover img {
    transform: scale(1.1);
}

.natyra-gallery .g-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 12px;
}

.natyra-gallery .g-item:hover::after {
    opacity: 1;
}

.natyra-gallery .g-item .g-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 2;
}

.natyra-gallery .g-item:hover .g-label {
    opacity: 1;
    transform: translateY(0);
}

.g-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.g-item:nth-child(5) {
    grid-column: span 2;
}

.g-item:nth-child(7) {
    grid-row: span 2;
}

/* Eras Section (Adapted from Seasons) */
.seasons-section {
    background-color: #f8f8f8;
    padding: 80px 40px;
}

.seasons-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.seasons-inner .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.seasons-inner .section-header h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 15px;
}

.seasons-inner .section-header p {
    font-size: 15px;
    color: #777;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.season-card {
    background: white;
    border-radius: 15px;
    padding: 30px 22px;
    text-align: center;
    border: 0.5px solid #e0e0e0;
    transition: 0.4s ease;
}

.season-card:hover {
    background-color: #04091e;
    border-color: #04091e;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.season-card .season-icon {
    font-size: 40px;
    margin-bottom: 18px;
    display: block;
}

.season-card:hover .season-icon {
    filter: brightness(0) invert(1);
}

.season-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.season-card:hover h3 {
    color: rgb(198, 176, 105);
}

.season-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    transition: color 0.3s;
}

.season-card:hover p {
    color: #bbb;
}

.season-card .season-temp {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background-color: rgba(198, 176, 105, 0.1);
    color: rgb(165, 145, 70);
    transition: 0.3s;
}

.season-card:hover .season-temp {
    background-color: rgba(198, 176, 105, 0.2);
    color: rgb(198, 176, 105);
}

.space {
    width: 100%;
    height: 50px;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: rgb(198, 176, 105);
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgb(198, 176, 105);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top:hover {
    background: #04091e;
    transform: translateY(-3px);
}

.scroll-top.visible {
    display: flex;
}

@media (max-width: 1024px) {
    .prehea {
        padding: 10px 40px;
    }

    .header {
        padding: 5px 40px;
    }

    .breadcrumb {
        padding: 15px 40px;
    }

    .hero-teksti h1 {
        font-size: 40px;
    }

    .hero-teksti p {
        width: 70%;
    }

    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-inner {
        flex-direction: column;
    }

    .featured-img {
        width: 100%;
        height: 350px;
    }

    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .natyra-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .g-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .g-item:nth-child(5) {
        grid-column: span 2;
    }

    .g-item:nth-child(7) {
        grid-row: span 1;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 0;
        transition: 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a,
    .dropbtn {
        color: #333;
        width: 100%;
        text-align: left;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .dropbtn {
        justify-content: space-between;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        visibility: visible;
        opacity: 1;
        display: none;
        background-color: #f5f5f5;
        border-radius: 0;
        box-shadow: none;
    }

    .dropdown.open .dropdown-content {
        display: flex;
    }

    .dropdown-content a {
        color: #555;
        padding-left: 30px;
    }

    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100% - 280px);
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding-bottom: 40px;
    }

    .prehea {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
        text-align: center;
    }

    .elements {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-teksti {
        height: auto;
        padding: 60px 20px;
    }

    .hero-teksti h1 {
        font-size: 32px;
    }

    .hero-teksti p {
        width: 100%;
        font-size: 14px;
    }

    .breadcrumb {
        padding: 12px 20px;
    }

    .natyra-intro {
        padding: 50px 20px;
    }

    .natyra-intro h2 {
        font-size: 28px;
    }

    .dest-grid {
        grid-template-columns: 1fr;
    }

    .seasons-grid {
        grid-template-columns: 1fr;
    }

    .natyra-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .g-item:nth-child(1),
    .g-item:nth-child(5) {
        grid-column: span 1;
    }

    .featured-text h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero-teksti h1 {
        font-size: 26px;
    }

    .natyra-intro h2 {
        font-size: 24px;
    }

    .logo img {
        width: 70px;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
    }
}