@charset "utf-8";
@import url("http://fonts.googleapis.com/css?family=Nunito&subset=latin,latin-ext");
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,400i,700');

* { margin: 0; padding: 0; box-sizing: border-box; }
/* CSS Variables */
:root { --slide-transition-duration: 0.3s; }
body {font-family:'Lato', 'Nunito',sans-serif;  background: #000; overflow-x: hidden; }

/* Header Styles */
header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(0, 0, 0, 0); padding: 20px 20px 20px 50px; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; }
.logo {font-size:1.3rem; font-weight:300; color: #fff; transition: all 0.3s ease; user-select: none;}

/* Animation for UI toggle */
.ui-element { transition: opacity 0.3s ease, transform 0.3s ease; }
.ui-element.hidden { opacity: 0; transform: translateY(-10px); pointer-events: none; }
nav {display:flex; gap:.3rem; align-items:center;}
nav a {color:#fff; text-decoration: none; font-size:1.2rem; font-weight:300; position:relative; cursor:pointer; transition: all 0.3s ease; padding:.3rem .6rem; border-radius:8px;}
nav a::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.1); border-radius: 8px; transform: scale(0); transition: transform 0.3s ease; z-index: -1; }
nav a:hover { color: #fff; }
nav a:hover::before { transform: scale(1); }
nav a::after { display: none; }

.fullscreen-btn {display:none;}
.play-pause-btn {display:none;}

.image-info.ui-element.hidden { animation: none !important; }

/* Mobile Menu Toggle */
.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.menu-toggle span { width: 30px; height: 3px; background: #cde; transition: all 0.3s ease; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

/* Slider Wrapper */
.slider-wrapper { position: relative; width: 100vw; height: 100vh; perspective: 1000px; }
.slider-container { position: relative; width: 100%; height: 100%; overflow: hidden; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity var(--slide-transition-duration) ease-in-out; transform-style: preserve-3d; }
.slide.active { opacity: 1; z-index: 2; }
.slide.prev { opacity: 0.5; z-index: 1; }

/* Parallax Layers */
.parallax-layer { position: absolute; width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.background-layer { z-index: 1; }
.background-layer img { width: 110%; height: 110%; object-fit: cover; position: absolute; top: -5%; left: -5%; filter: brightness(0.7); }

/* Image Info at Bottom */
.image-info { position: absolute; bottom: 80px; left: 50%; padding:2.5rem 4rem; /*width: 90%; */max-width:90%; transform: translateX(-50%); z-index: 10; color: white; background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(5px); border-radius: 15px; opacity: 0; animation: fadeInUp 1s ease-out 0.3s forwards; border: 1px solid rgba(255, 255, 255, 0.1); }
.slide.active .image-info { animation: fadeInUp 1s ease-out 0.3s forwards; }
@keyframes fadeInUp { 0% { opacity: 0; transform: translate(-50%, 20px); }  100% { opacity: 1; transform: translate(-50%, 0); } }
.image-info h2 {font-size:1.4remrem; font-weight:400; margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);}
.image-info p { /*font-size: 1.1rem;*/ font-weight: 300; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); opacity: 0.9; text-align:left;line-height:1.4rem; }
.image-info a {color: white;  background: rgba(255, 255, 255, 0.3);  padding:0 .5rem; border-radius:.01rem; border: 1px solid rgba(255, 255, 255, 0.1);text-decoration:none;}
.image-info a:hover {background: rgba(254, 86, 73, 0.3);}

/* Decorative Shapes */
.parallax-shape { position: fixed; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(4px); border-radius: 50%; transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); cursor: pointer; z-index: 500; pointer-events: auto; }
.parallax-shape:hover { background: rgba(255, 255, 255, 0.12); transform: scale(1.1) !important; }
.shape-1 { width: 200px; height: 200px; top: 15%; left: 10%; }
.shape-2 { width: 150px; height: 150px; bottom: 25%; right: 15%; top: auto; left: auto; }

/* Navigation Arrows */
.nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); border: 2px solid rgba(255, 255, 255, 0.2); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; z-index: 100; transition: all 0.3s ease; font-size: 1.5rem; }
.nav-arrow:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-50%) scale(1.1); }
.nav-arrow.prev { left: 30px; }
.nav-arrow.next { right: 30px; }

/* Dots Navigation */
.dots-container { position: fixed; bottom: 50px; left: 50%; transform: translateX(-50%); display: flex; gap: 15px; z-index: 100; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.4); cursor: pointer; transition: all 0.3s ease; position: relative; }
.dot::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 6px; height: 6px; border-radius: 50%; background: white; opacity: 0; transition: all 0.3s ease; }
.dot.active { background: rgba(255, 255, 255, 0.9); transform: scale(1.4); }
.dot.active::after { opacity: 1; }
.dot:hover { background: rgba(255, 255, 255, 0.7); }

/* Gradient Overlay */
.slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 30%, transparent 60%, rgba(0, 0, 0, 0.6) 100%); z-index: 3; pointer-events: none; }

/* Scroll Indicator */
.scroll-indicator { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.scroll-indicator.show { opacity: 1; }
.scroll-indicator::after { content: '↓'; animation: scrollBounce 2s ease-in-out infinite; }

.map-image { margin-top: 20px; }

@keyframes scrollBounce {  0%, 100% { transform: translateY(0); }  50% { transform: translateY(5px); } }

/* Footer */
footer { position: fixed; bottom: 0; right: 0; padding: 15px 30px; z-index: 50; text-align: right; }
footer p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
footer a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: color 0.3s ease; margin: 0 3px; }
footer a:hover { color: #fff; }

/* Responsive Design */
@media (max-width: 968px) {
	header { padding: 20px 30px; }
	.logo { font-size: 1.5rem; }
	nav { gap: 25px; }
	nav a { font-size: 0.95rem; }
	/*.image-info {width:90%;}*/
	.image-info h2 { font-size: 1.6rem; }
	.image-info p { font-size: 1rem; }
}

@media (max-width: 768px) {
	header { padding: 15px 20px; }
	.logo { font-size: 1.3rem; }
	nav { position: fixed; top: 70px; left: 0; width: 100%; background: rgba(0, 0, 0, 0.5); flex-direction: column; gap: 0; padding: 20px 0; transform: translateY(-100%); opacity: 0; transition: all 0.3s ease; pointer-events: none; }
	nav.active { transform: translateY(0); opacity: 1; pointer-events: all; }
	nav a { padding: 18px 30px; width: 100%; text-align: center; font-size: 1.1rem; border-radius: 0; transition: all 0.3s ease; }
	nav a:hover, nav a:active { background: rgba(255, 255, 255, 0.08); }
	nav a::before { border-radius: 0; }
	.fullscreen-btn { width: 42px; height: 42px; margin: 15px auto 10px; border-radius: 10px; }
	.fullscreen-btn::before { display: none; }
	.fullscreen-btn svg { width: 20px; height: 20px; }
	.menu-toggle { display: flex; }
	.image-info { bottom: 70px; padding: 20px 25px; width: 90%;}
	.image-info h2 { font-size: 1.4rem; margin-bottom: 8px; }
	.image-info p { font-size: 0.95rem; }
	.nav-arrow { width: 50px; height: 50px; font-size: 1.2rem; }
	.nav-arrow.prev { left: 15px; }
	.nav-arrow.next { right: 15px; }
	.parallax-shape { width: 120px; height: 120px; }
	.shape-2 { width: 90px; height: 90px; }
	/*.ui-toggle-btn { bottom: 55px; right: 20px; width: 32px; height: 32px; }*/
	.ui-toggle-btn {display:none; }
	.ui-toggle-btn svg { width: 16px; height: 16px; }
	.play-pause-btn { bottom: 20px; left: 20px; width: 45px; height: 45px; }
	.play-pause-btn svg { width: 18px; height: 18px; }
	.progress-ring { width: 51px; height: 51px; }
	.duration-controls { bottom: 20px; left: 80px; gap: 8px; }
	.duration-btn { width: 32px; height: 32px; font-size: 18px; }
	.duration-display { min-width: 40px; height: 32px; font-size: 14px; padding: 0 10px; }

	.submit-btn { padding: 14px 35px; font-size: 1rem; }
	footer { padding: 10px 15px; }
	footer p { font-size: 0.75rem; line-height: 1.5; }
}

@media (max-width: 480px) {
	.logo { font-size: 1.1rem; letter-spacing: 1px; }
	.image-info { bottom: 60px; padding: 15px 20px;width: 90%; }
	.image-info h2 { font-size: 1.2rem; }
	.image-info p { font-size: 0.85rem; }
	.dots-container { bottom: 40px; gap: 12px; }

	.map-container { margin: 20px auto 15px; }

	.dot { width: 10px; height: 10px; }
}