@font-face {
    font-family: 'Inter';
    src: url('../font/inter.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --dark-brown: #3a2c1e;
    --light-brown: #4a3c2a;
    --dark-green: #214d26;
    --lake-blue: #2b6c8f;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --accent-gold: #c99c33;
    --cta-orange: #f39c12;
    --gold-accent: #c9a449; 
}

::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

body {
    -ms-overflow-style: none;
}

html, body {
    overflow-x: hidden;
    overflow-y: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overscroll-behavior: none;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

.nav-menu a,
.register-btn,
.icon-btn,
.facility-btn,
.view-all-btn,
.social-icon,
.puzzle-piece,
.gallery-item,
.facility-item,
.select-selected,
.select-item,
.nav-left a, .meteor-container {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Top Bar Start */
.top-bar {
    background: var(--dark-brown);
    padding: 0.55rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.register-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, ease-in-out 0.3s;
    font-size: 0.9rem;
}

.register-btn:hover {
    background: #ff5252;
    transform: scale(1.05);
}
/* Top Bar End */

/* Custom Select Start */
.custom-select {
    position: relative;
    width: 140px;
    user-select: none;
}

.select-selected {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.select-selected:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.select-selected.active {
    border-radius: 25px 25px 0 0;
    border-bottom-color: transparent;
}

.selected-flag {
    font-size: 1.2rem;
}

.selected-text {
    flex: 1;
    font-size: 0.9rem;
}

.select-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.select-selected.active .select-arrow {
    transform: rotate(180deg);
}

.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-brown);
    border: 2px solid white;
    border-top: none;
    border-radius: 0 0 25px 25px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 10;
}

.select-items.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-item {
    padding: 0.6rem 1rem;
    color: white;
    cursor: pointer;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.select-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.select-item:before {
    content: attr(data-flag);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}
/* Custom Select End */

/* Navigation Start */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 60px;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    height: 60px;
    position: relative;
}

.meteor-container {
    position: relative;
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
}

.meteor-shape {
    position: absolute;
    width: 84px;
    height: 95px;
    top: -19px;
    left: -6.8px;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border-radius: 0 0 70% 70%;
}

.logo-wrapper {
    position: absolute;
    top: 2px;
    left: 0;
    width: 70px;
    height: 70px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

.site-title {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: bold;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-left: 1rem;
    z-index: 3;
    position: relative;
}

.site-title span:first-child {
    font-size: 1.3rem;
}

.site-title span:last-child {
    font-size: 1rem;
    color: var(--dark-green);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
}

.hamburger-menu.active {
    z-index: 1101;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--dark-brown);
    transition: all 0.3s;
    border-radius: 3px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    z-index: 900;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: var(--dark-green);
}
/* Navigation End */

/* Stars Background Start */


.hero-section,
.facilities-section,
.articles-section,
.social-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.facilities-section::before,
.articles-section::before,
.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(7px 7px at 5% 15%, rgba(201, 164, 73, 0.7) 3px, transparent 4px),
        radial-gradient(6px 6px at 12% 45%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),
        radial-gradient(8px 8px at 18% 75%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(5px 5px at 25% 90%, rgba(201, 164, 73, 0.9) 3px, transparent 4px),
        radial-gradient(9px 9px at 35% 25%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(6px 6px at 42% 55%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),
        radial-gradient(7px 7px at 48% 85%, rgba(201, 164, 73, 0.7) 3px, transparent 4px),
        radial-gradient(8px 8px at 55% 35%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(6px 6px at 62% 65%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),
        radial-gradient(9px 9px at 68% 95%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(5px 5px at 75% 10%, rgba(201, 164, 73, 0.9) 3px, transparent 4px),
        radial-gradient(7px 7px at 82% 40%, rgba(201, 164, 73, 0.7) 3px, transparent 4px),
        radial-gradient(8px 8px at 88% 70%, rgba(201, 164, 73, 0.7) 4px, transparent 5px),
        radial-gradient(6px 6px at 95% 20%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),
        
        radial-gradient(5px 5px at 8% 30%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),
        radial-gradient(6px 6px at 22% 60%, rgba(58, 44, 30, 0.7) 3px, transparent 4px),
        radial-gradient(5px 5px at 38% 80%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),
        radial-gradient(7px 7px at 45% 20%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),
        radial-gradient(6px 6px at 58% 50%, rgba(58, 44, 30, 0.7) 3px, transparent 4px),
        radial-gradient(5px 5px at 72% 75%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),
        radial-gradient(6px 6px at 85% 55%, rgba(58, 44, 30, 0.7) 3px, transparent 4px),
        radial-gradient(5px 5px at 92% 85%, rgba(58, 44, 30, 0.6) 3px, transparent 4px),
        
        radial-gradient(4px 4px at 15% 25%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(4px 4px at 28% 48%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(5px 5px at 33% 72%, rgba(33, 77, 38, 0.5) 3px, transparent 4px),
        radial-gradient(4px 4px at 48% 38%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(4px 4px at 52% 62%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(5px 5px at 63% 88%, rgba(33, 77, 38, 0.5) 3px, transparent 4px),
        radial-gradient(4px 4px at 77% 42%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(4px 4px at 83% 68%, rgba(33, 77, 38, 0.5) 2px, transparent 3px),
        radial-gradient(5px 5px at 97% 12%, rgba(33, 77, 38, 0.5) 3px, transparent 4px);
    
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.hero-section::after,
.facilities-section::after,
.articles-section::after,
.social-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(3px 3px at 10% 35%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(4px 4px at 20% 55%, rgba(255, 215, 0, 0.7) 2px, transparent 3px),
        radial-gradient(3px 3px at 30% 12%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(5px 5px at 40% 82%, rgba(255, 215, 0, 0.7) 3px, transparent 4px),
        radial-gradient(3px 3px at 50% 45%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(4px 4px at 60% 28%, rgba(255, 215, 0, 0.7) 2px, transparent 3px),
        radial-gradient(3px 3px at 70% 92%, rgba(255, 215, 0, 0.8) 2px, transparent 2px),
        radial-gradient(5px 5px at 80% 15%, rgba(255, 215, 0, 0.7) 3px, transparent 4px),
        radial-gradient(3px 3px at 90% 65%, rgba(255, 215, 0, 0.8) 2px, transparent 2px);
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    mix-blend-mode: screen;
}

.facilities-section::before {
    filter: brightness(1.1);
}

.articles-section::before {
    filter: brightness(1.2);
    background-image: 
        radial-gradient(8px 8px at 15% 25%, rgba(33, 77, 38, 0.7) 4px, transparent 5px),
        radial-gradient(7px 7px at 35% 55%, rgba(201, 164, 73, 0.8) 3px, transparent 4px),
        radial-gradient(6px 6px at 55% 75%, rgba(58, 44, 30, 0.7) 3px, transparent 4px),
        radial-gradient(9px 9px at 75% 35%, rgba(33, 77, 38, 0.6) 4px, transparent 5px),
        radial-gradient(7px 7px at 90% 15%, rgba(201, 164, 73, 0.8) 3px, transparent 4px);
}

.social-section::before {
    filter: brightness(1.3);
}

.hero-section > *,
.facilities-section > *,
.articles-section > *,
.social-section > * {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-section::before,
    .facilities-section::before,
    .articles-section::before,
    .social-section::before {
        opacity: 0.8;
    }
}
/* Stars Background End */

/* Heading Section Start */
.heading-section {
    margin-top: 115px;
    position: relative;
    height: 70vh;
    overflow: hidden;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: none;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.1) 50%, rgba(255,140,0,0.15) 100%);
    opacity: 0;
    transition: opacity 1.5s ease;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide.active::before {
    opacity: 0.5;
    animation: burnEffect 3s infinite alternate;
}

@keyframes burnEffect {
    0% {
        opacity: 0.3;
        background: radial-gradient(circle at 30% 40%, transparent 0%, rgba(0,0,0,0.1) 40%, rgba(255,140,0,0.1) 100%);
    }
    50% {
        opacity: 0.5;
        background: radial-gradient(circle at 70% 60%, transparent 0%, rgba(0,0,0,0.1) 40%, rgba(255,100,0,0.15) 100%);
    }
    100% {
        opacity: 0.3;
        background: radial-gradient(circle at 40% 70%, transparent 0%, rgba(0,0,0,0.1) 40%, rgba(255,120,0,0.1) 100%);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.heading-right-content {
    position: absolute;
    right: 10%;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem 0;
    z-index: 2;
}

.unesco-logo {
    transition: opacity 0.3s;
    margin-top: 150%;
}

.unesco-logo.hidden {
    opacity: 0;
    pointer-events: none;
}

.unesco-logo img {
    height: 70px;
    width: auto;
    filter: none;
    background: white;
    padding: 10px;
    border-radius: 7px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.unesco-logo .logo-pt-gravica {
    display: block;
    height: 70px;
    width: auto;
    background: white;
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.unesco-logo .logo-container {
    display: flex;
    gap: 10px;
}

.heading-buttons {
    display: flex;
    gap: 1rem;
}

.icon-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: transform 0.3s, ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.icon-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.icon-btn img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}
/* Heading Section End */

/* Hero Section Start */
.hero-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 2rem;
    font-style: italic;
}

.advantages {
    margin-top: 2rem;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #ebe8e8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.advantages h3 {
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.advantages ul {
    list-style: none;
}

.advantages li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
/* Hero Section End */

/* Owner Section with CSS Texture Start */
.owner-section {
    position: relative;
    background: var(--light-brown);
    padding: 5rem 2rem;
    color: white;
    overflow: hidden;
    width: 100%;
}

.owner-texture-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.116) 0%, transparent 30%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        linear-gradient(45deg, transparent 60%, rgba(15, 10, 10, 0.13) 100%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0px, rgba(15, 10, 10, 0.08) 3px, transparent 3px, transparent 8px),
        repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 4px, transparent 4px, transparent 10px);
    pointer-events: none;
    z-index: 0;
}

.owner-grid {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
    width: 100%;
}

.owner-image img {
    width: 100%;
    border-radius: 20px;
}

.owner-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.owner-story {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.owner-quote {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 1.2rem;
    border-left: 4px solid var(--dark-brown);
    backdrop-filter: blur(5px);
}
/* Owner Section with CSS Texture Start */

/* Facilities Section Start */
.facilities-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.facilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Slide Right to Left, Presentation Like */
/* .facilities-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.facilities-image.fade-out {
    animation: slideOutToLeft 0.5s ease-in-out forwards;
}

.facilities-image.fade-in {
    animation: slideInFromRight 0.5s ease-in-out forwards;
}

@keyframes slideOutToLeft {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-100%) scale(0.8);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.facilities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    display: block;
}

.facilities-image:hover img {
    transform: scale(1.02);
} */

/* Zoom In/Out Smooth */
/* .facilities-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.facilities-image.fade-out {
    animation: zoomOut 0.6s ease-in-out forwards;
}

.facilities-image.fade-in {
    animation: zoomIn 0.6s ease-in-out forwards;
}

@keyframes zoomOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.7);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.facilities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    display: block;
}

.facilities-image:hover img {
    transform: scale(1.02);
} */

/* Slide and Fade Effect */
.facilities-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.facilities-image.fade-out {
    animation: slideFadeOut 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

.facilities-image.fade-in {
    animation: slideFadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideFadeOut {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    30% {
        opacity: 0.8;
        transform: translateX(-5%) scale(0.95);
    }
    100% {
        opacity: 0;
        transform: translateX(-20%) scale(0.9);
    }
}

@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateX(20%) scale(0.9);
    }
    70% {
        opacity: 0.9;
        transform: translateX(-2%) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.facilities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    display: block;
}

.facilities-image:hover img {
    transform: scale(1.02);
}

.facilities-content h2 {
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.facilities-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.facility-item {
    margin: 0;
    padding: 0;
    border: none;
    transition: transform 0.3s ease;
}

.facility-item:hover {
    transform: translateX(10px);
}

.facility-btn {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border: 2px solid #ece8e8;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
    user-select: none;
}

@media (max-width: 768px) {
    .facilities-image {
        height: 180px;
    }

    .facilities-list {
        gap: 0.45rem;
    }

    .facility-item:hover {
        transform: none;
    }

    .facility-btn {
        border: 2px solid var(--dark-brown);
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
        box-shadow: none;
    }
}

.facility-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.facility-item:hover .facility-btn::before {
    left: 100%;
}

.facility-item.active .facility-btn {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--light-brown) 100%);
    color: white;
    border: 2px solid var(--gold-accent);
    box-shadow: 0 8px 15px rgba(58, 44, 30, 0.3);
}

.facility-item.active .facility-btn strong {
    color: var(--gold-accent);
}

.facility-item:not(.active):hover .facility-btn {
    border: 2px solid var(--dark-green);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7f0 100%);
    box-shadow: 0 8px 15px rgba(45, 90, 59, 0.15);
}

.facility-btn strong {
    color: var(--dark-green);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.facility-item.active .facility-btn strong {
    color: var(--gold-accent);
}
/* Facilities Section End */

/* Map Section Start */
.map-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.map-interactive-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.map-puzzle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    aspect-ratio: 1;
    perspective: 1000px;
}

.puzzle-piece {
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform-origin: center;
}

.piece-1 { 
    background: linear-gradient(135deg, var(--dark-brown) 0%, #8b7355 100%);
}

.piece-2 { 
    background: linear-gradient(135deg, var(--gold-accent) 0%, #e6b422 100%);
}

.piece-3 { 
    background: linear-gradient(135deg, var(--dark-green) 0%, #3d7a4b 100%);
}

.piece-4 { 
    background: linear-gradient(135deg, var(--lake-blue) 0%, #3498db 100%);
}

.puzzle-piece:hover {
    transform: translate(var(--hover-x, 0), var(--hover-y, 0)) scale(1.01);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
}

.puzzle-piece.active {
    transform: translate(var(--active-x, 0), var(--active-y, 0)) scale(1.03);
    z-index: 20;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.piece-1.active {
    --active-x: -15px;
    --active-y: -15px;
}
.piece-2.active {
    --active-x: 15px;
    --active-y: -15px;
}
.piece-3.active {
    --active-x: -15px;
    --active-y: 15px;
}
.piece-4.active {
    --active-x: 15px;
    --active-y: 15px;
}

.piece-1:hover {
    --hover-x: -10px;
    --hover-y: -10px;
}
.piece-2:hover {
    --hover-x: 10px;
    --hover-y: -10px;
}
.piece-3:hover {
    --hover-x: -10px;
    --hover-y: 10px;
}
.piece-4:hover {
    --hover-x: 10px;
    --hover-y: 10px;
}

@media (max-width: 768px){
    .puzzle-piece.active {
        transform: translate(var(--active-x, 0), var(--active-y, 0)) scale(1.01);
    }
    .piece-1.active {
        --active-x: -8px;
        --active-y: -8px;
    }

    .piece-2.active {
        --active-x: 8px;
        --active-y: -8px;
    }

    .piece-3.active {
        --active-x: -8px;
        --active-y: 8px;
    }

    .piece-4.active {
        --active-x: 8px;
        --active-y: 8px;
    }

    .piece-1:hover {
        --hover-x: -8px;
        --hover-y: -8px;
    }

    .piece-2:hover {
        --hover-x: 8px;
        --hover-y: -8px;
    }

    .piece-3:hover {
        --hover-x: -8px;
        --hover-y: 8px;
    }

    .piece-4:hover {
        --hover-x: 8px;
        --hover-y: 8px;
    }
}

.piece-content {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.map-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    border-left: 18px solid transparent;
}

.map-info[data-region-active="north"] {
    border-left-color: var(--dark-brown);
    background: linear-gradient(to right, white, #fff8f0);
}

.map-info[data-region-active="east"] {
    border-left-color: var(--gold-accent);
    background: linear-gradient(to right, white, #fff9e6);
}

.map-info[data-region-active="south"] {
    border-left-color: var(--dark-green);
    background: linear-gradient(to right, white, #f0f7f0);
}

.map-info[data-region-active="lake"] {
    border-left-color: var(--lake-blue);
    background: linear-gradient(to right, white, #f0f8ff);
}

.region-info {
    animation: slideInInfo 0.5s ease;
}

@keyframes slideInInfo {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Map Section End */

/* Articles Section Start */
.articles-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.featured-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-article img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-article .article-content {
    padding: 2rem;
}

.featured-article h3 {
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.small-article {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.small-article:hover {
    transform: translateX(10px);
    background: var(--light-brown);
    color: white;
}

.small-article h4 {
    margin-bottom: 0.5rem;
}

.date {
    font-size: 0.9rem;
    color: #999;
}

.small-article:hover .date {
    color: rgba(255,255,255,0.8);
}

.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn {
    background: var(--dark-green);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s, ease-in-out 0.3s;
}

.view-all-btn:hover {
    background: var(--dark-brown);
    transform: scale(1.05);
}
/* Articles Section End */

/* Gallery Section Start */
.gallery-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 164, 73, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    filter: brightness(0.95);
}

.gallery-item:hover .gallery-image-container img {
    transform: scale(1.08);
    filter: brightness(1.02);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
/* Gallery Section End */

/* Social Section Start */
.social-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.social-links h2 {
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-icon {
    text-decoration: none;
    color: var(--dark-brown);
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    background: #f5f5f5;
    border-radius: 10px;
    transition: all 0.3s;
}

.social-icon i{
    font-size:20px;
}

.social-icon.instagram{
    background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
    color: #fff;
    border: 2px solid #8e31c4;
}

.social-icon.facebook{
    background:#1877f2;
    color: #fff;
    border: 2px solid #0e68df;
}

.social-icon.twitter{
    background:#000;
    color: #fff;
    border: 2px solid #272727;
}

.social-icon.youtube{
    background:#ff0000;
    color: #fff;
    border: 2px solid #d40202;
}

.social-icon.whatsapp {
    background: #25D366;
    color: #fff;
    border: 2px solid #1bb152;
}

.social-icon.tiktok {
    background:#000;
    color: #fff;
    border: 2px solid #272727;
}

.social-icon:hover {
    transform:translateX(10px);
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.iphone-x {
    position: relative;
    height: 650px;
    width: 320px;
    background: #111;
    border: 5px solid #3D3D3D;
    border-radius: 50px;
    box-shadow: 
        inset 0 0 3px 0 rgba(0,0,0,0.2),
        0 0 0 1px #999,
        0 30px 50px rgba(0,0,0,0.3);
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

.iphone-x:hover {
    transform: scale(0.87);
}

.iphone-x .buttons .silent,
.iphone-x .buttons .vol-up,
.iphone-x .buttons .vol-down,
.iphone-x .buttons .sleep {
    background: #111;
    position: absolute;
    border-radius: 2px 0 0 2px;
}

.iphone-x .buttons .silent {
    height: 40px;
    width: 3px;
    top: 80px;
    left: -8px;
}

.iphone-x .buttons .vol-up,
.iphone-x .buttons .vol-down {
    left: -8px;
    height: 60px;
    width: 4px;
}

.iphone-x .buttons .vol-up {
    top: 140px;
}

.iphone-x .buttons .vol-down {
    top: 210px;
}

.iphone-x .buttons .sleep {
    left: auto;
    right: -8px;
    top: 150px;
    height: 100px;
    width: 4px;
    border-radius: 0 2px 2px 0;
}

.iphone-x .top {
    position: absolute;
    top: 4px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 4;
    filter: url('#goo');
}

.iphone-x .top .black-bar {
    position: absolute;
    height: 1px;
    width: 70%;
    padding-top: 2px;
    background: #111;
}

.iphone-x .top .iphone-top {
    position: relative;
    height: 30px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 20px 20px;
    background: #111;
    z-index: 2;
}

.iphone-x .components {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 10;
}

.iphone-x .components .speaker {
    height: 6px;
    width: 70px;
    border-radius: 6px;
    border-bottom: 1px solid #333;
    background: #222;
    z-index: 100;
}

.iphone-x .components .camera {
    position: relative;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border-bottom: 1px solid #444;
    background: radial-gradient(black, #333);
    opacity: 0.5;
    z-index: 4;
}

.iphone-x .components .camera .shine-left {
    position: absolute;
    height: 10px;
    width: 10px;
    margin: 2px;
    border-left: 4px solid dodgerblue;
    border-right: transparent;
    background: black;
    border-radius: 50%;
    filter: blur(1.8px);
}

.iphone-x .components .camera .shine-left:before {
    content: '';
    position: absolute;
    right: 0px;
    height: 8px;
    width: 8px;
    border-right: 2px solid white;
    border-radius: 4px;
}

.iphone-x .top-bar,
.iphone-x .bottom-bar {
    position: absolute;
    left: -5px;
    height: 15px;
    width: 320px;
    border-left: 5px solid #111;
    border-right: 5px solid #111;
}

.iphone-x .top-bar {
    top: 65px;
}

.iphone-x .bottom-bar {
    bottom: 65px;
}

.iphone-x .screen {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 2px solid rgba(0,0,0,0.9);
    border-radius: 40px;
    overflow: hidden;
    background: white;
}

.iphone-x .instagram-feed {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    padding: 0 5px 0 5px;
    box-sizing: border-box;
}

.iphone-x .instagram-feed::-webkit-scrollbar {
    width: 4px;
}

.iphone-x .instagram-feed::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.iphone-x .instagram-feed::-webkit-scrollbar-thumb {
    background: var(--dark-brown);
    border-radius: 10px;
}

.insta-post {
    margin-bottom: 20px;
    border-bottom: 1px solid #efefef;
    padding-bottom: 15px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.insta-post:hover {
    opacity: 0.9;
}

.insta-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0 10px 0;
}

.insta-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.insta-username {
    font-weight: 600;
    font-size: 14px;
    color: #262626;
}

.insta-image-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin: 5px 0;
    background: #fafafa;
}

.insta-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.insta-image:hover {
    transform: scale(1.02);
}

.insta-actions {
    display: flex;
    gap: 15px;
    padding: 10px 0 5px 0;
    font-size: 22px;
}

.insta-actions span {
    cursor: default;
}

.insta-likes {
    font-weight: 600;
    font-size: 14px;
    padding: 0 0 5px 0;
    color: #262626;
}

.insta-caption {
    font-size: 13px;
    line-height: 1.4;
    color: #262626;
}

.insta-caption strong {
    margin-right: 5px;
}

.insta-time {
    font-size: 10px;
    color: #8e8e8e;
    padding: 8px 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insta-loading, .insta-error {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 14px;
    color: #666;
    text-align: center;
    padding: 20px;
}

.insta-error {
    color: #ed4956;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.insta-loading {
    animation: pulse 1.5s ease-in-out infinite;
}

.insta-view-profile {
    text-align: center;
    padding: 15px 0 10px;
}

.insta-view-profile a {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.insta-view-profile a:hover {
    transform: scale(1.05);
}

/* Additional Instagram Profile Styles */
.stat-label {
    font-size: 12px;
    color: #8e8e8e;
}

.insta-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 20px;
    text-align: center;
    color: #8e8e8e;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0095f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.insta-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 20px;
    text-align: center;
    color: #ed4956;
}

.error-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.retry-btn {
    margin-top: 15px;
    padding: 8px 20px;
    background: #0095f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}
/* Social Section End */

/* Footer Start */
.footer {
    background: var(--dark-brown);
    color: white;
    padding: 4rem 2rem 1rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 85% 65%, rgba(255, 255, 255, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 45% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 30%),
        
        linear-gradient(45deg, transparent 60%, rgba(10, 5, 5, 0.2) 100%),
        linear-gradient(135deg, transparent 70%, rgba(0, 0, 0, 0.15) 100%),
        
        repeating-linear-gradient(90deg, 
            rgba(255, 255, 255, 0.02) 0px, 
            rgba(255, 255, 255, 0.02) 1px, 
            transparent 1px, 
            transparent 25px),
        repeating-linear-gradient(45deg, 
            rgba(255, 255, 255, 0.01) 0px, 
            rgba(255, 255, 255, 0.01) 2px, 
            transparent 2px, 
            transparent 35px),
        repeating-linear-gradient(-45deg, 
            rgba(255, 255, 255, 0.01) 0px, 
            rgba(255, 255, 255, 0.01) 2px, 
            transparent 2px, 
            transparent 35px),
        
        radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(0, 0, 0, 0.08) 0%, transparent 30%),
        
        repeating-linear-gradient(15deg, 
            rgba(0, 0, 0, 0.03) 0px, 
            rgba(0, 0, 0, 0.03) 5px, 
            transparent 5px, 
            transparent 20px),
        repeating-linear-gradient(105deg, 
            rgba(0, 0, 0, 0.02) 0px, 
            rgba(0, 0, 0, 0.02) 8px, 
            transparent 8px, 
            transparent 25px);
    
    pointer-events: none;
    z-index: 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.footer h3, .footer h4 {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-links ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-links a:hover {
    color: white;
}

.footer p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.powered-by {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
/* Footer End */

/* Mobile Display Start */
@media (max-width: 768px) {
    .top-bar-container {
        padding: 0 1rem;
        gap: 1rem;
        width: 100%;
    }

    .register-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .custom-select {
        width: 100px;
    }

    .selected-text {
        font-size: 0.8rem;
    }

    .nav-container {
        padding: 0 1rem;
        height: 60px;
        width: 100%;
    }

    .nav-left {
        gap: 0.8rem;
    }
    
    .meteor-container {
        width: 60px;
    }

    
    .site-title {
        margin-left: 1.2rem;
    }
    
    .site-title span:first-child {
        font-size: 1.1rem;
    }
    
    .site-title span:last-child {
        font-size: 0.9rem;
    }

    .hamburger-menu {
        display: flex;
        position: relative;
        z-index: 1100;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 120px 1rem 2rem 1rem;
        gap: 1rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 900;
        margin: 0;
        overflow-y: auto;
        box-sizing: border-box;
        padding-top: 120px;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        max-width: 400px;
        text-align: center;
        list-style: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #eee;
        width: 100%;
        box-sizing: border-box;
        background: white;
    }

    .nav-menu a:hover {
        background: var(--light-brown);
        color: white;
        border-radius: 10px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .heading-section {
        margin-top: 115px;
        position: relative;
        width: 100%;
        z-index: 1;
    }

    .heading-right-content {
        right: 5%;
        padding: 1.5rem 0;
    }

    .unesco-logo {
        margin-top: 135%;
    }

    .unesco-logo .logo-container img {
        height: 50px;
    }
    
    .heading-buttons {
        gap: 0.5rem;
    }
    
    .icon-btn {
        width: 50px;
        height: 50px;
    }
    
    .icon-btn img {
        width: 35px;
        height: 35px;
    }

    .hero-grid,
    .owner-grid,
    .facilities-grid,
    .articles-grid,
    .social-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    .map-interactive-grid {
        display: contents;
        flex-direction: column;
    }

    .map-puzzle {
        order: 1;
        margin-bottom: 1rem;
    }

    .map-info {
        order: 2;
        margin-top: 1rem;
        scroll-margin-top: 120px;
    }

    .region-info {
        animation: fadeInRegion 0.3s ease-in-out;
    }
    
    @keyframes fadeInRegion {
        from { opacity: 0;}
        to { opacity: 1;}
    }

    .hero-section,
    .owner-section,
    .facilities-section,
    .map-section,
    .articles-section,
    .gallery-section,
    .social-section {
        padding: 3rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
    }

    .puzzle-piece {
        min-height: 120px;
    }

    .articles-grid {
        gap: 2rem;
    }

    .featured-article img {
        height: 200px;
    }

    .small-article {
        padding: 1rem;
    }

    .social-icons {
        margin-bottom: 2rem;
    }

    .iphone-frame {
        width: 280px;
        height: 550px;
        margin: 0 auto;
    }

    .footer-grid {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .top-bar-container {
        gap: 0.5rem;
    }
    
    .register-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .custom-select {
        width: 140px;
    }
    
    .meteor-container {
        width: 55px;
    }
    
    .meteor-shape {
        width: 70px;
        height: 79px;
        top: -15px;
        left: -7.7px;
    }
    
    .logo-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .site-title {
        margin-left: 0.5rem;
    }
    
    .site-title span:first-child {
        font-size: 1rem;
    }
    
    .site-title span:last-child {
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .heading-section {
        height: 50vh;
        margin-top: 115px;
    }

    .heading-right-content {
        right: 4%;
        padding: 1rem 0;
    }
        
    .heading-buttons {
        gap: 0.3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .owner-content h2 {
        font-size: 1.8rem;
    }

    .facilities-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .puzzle-piece {
        min-height: 90px;
        font-size: 0.8rem;
    }

    .piece-content {
        padding: 0.5rem;
    }

    .featured-article h3 {
        font-size: 1.3rem;
    }

    .small-article h4 {
        font-size: 1rem;
    }

    .social-icon {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }

    .iphone-frame {
        width: 240px;
        height: 500px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .navbar.hidden {
        transform: translateY(-100%);
    }

    .navbar.menu-active {
        transform: none !important; 
    }
}