/* =============================================
   FONT FACE DECLARATIONS - GOOGLE SANS
   ============================================= */

@font-face {
	font-family: 'Google Sans';
	src: url('./fonts/GoogleSans-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Google Sans';
	src: url('./fonts/GoogleSans-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Google Sans';
	src: url('./fonts/GoogleSans-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* RESET & BASE STYLES */
* {
	box-sizing: border-box;
}

/* =============================================
   PRELOADER STYLES
   ============================================= */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0f0f23 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99999;
	transition: all 0.8s ease-in-out;
}

.preloader.fade-out {
	opacity: 0;
	visibility: hidden;
}

.preloader-content {
	text-align: center;
	animation: slideInUp 1s ease-out;
}

.preloader-logo {
	margin-bottom: 30px;
	animation: logoFloat 3s ease-in-out infinite;
}

.preloader-logo-img {
	max-width: 280px;
	max-height: 120px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: brightness(1.2) contrast(1.1);
	animation: logoGlow 2s ease-in-out infinite alternate;
}

.preloader-spinner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin-bottom: 30px;
	height: 60px;
}

.spinner-ring {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	animation: spinnerPulse 1.4s ease-in-out infinite;
}

.spinner-ring:nth-child(1) {
	animation-delay: -0.32s;
}

.spinner-ring:nth-child(2) {
	animation-delay: -0.16s;
}

.spinner-ring:nth-child(3) {
	animation-delay: 0s;
}

.preloader-text {
	color: white;
	font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.preloader-text h3 {
	margin: 0 0 10px 0;
	font-size: 24px;
	font-weight: 700;
	background: linear-gradient(135deg, #60a5fa, #a78bfa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: textShimmer 2s ease-in-out infinite;
}

.preloader-text p {
	margin: 0;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	animation: textFade 2s ease-in-out infinite;
}

/* Preloader animations */
@keyframes slideInUp {
	0% {
		transform: translateY(30px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes logoFloat {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes logoGlow {
	0% {
		filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
	}
	100% {
		filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
	}
}

@keyframes spinnerPulse {
	0%, 80%, 100% {
		transform: scale(0.8);
		opacity: 0.5;
	}
	40% {
		transform: scale(1.2);
		opacity: 1;
	}
}

@keyframes textShimmer {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

@keyframes textFade {
	0%, 100% {
		opacity: 0.7;
	}
	50% {
		opacity: 1;
	}
}

/* Mobile responsive for preloader */
@media (max-width: 768px) {
	.preloader-logo-img {
		max-width: 220px;
		max-height: 90px;
	}
	
	.preloader-text h3 {
		font-size: 20px;
	}
	
	.preloader-text p {
		font-size: 14px;
	}
	
	.spinner-ring {
		width: 10px;
		height: 10px;
	}
}

html { 
	height: 100%; 
	scroll-behavior: smooth;
}

body { 
	height: 100%; 
	overflow: hidden; 
	margin: 0; 
	padding: 0; 
	font-family: 'Google Sans', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif; 
	font-size: 16px; 
	font-weight: 400;
	color: #FFFFFF; 
	background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0f0f23 100%);
}

/* MODERN SIDEBAR STYLES */
.sidebar-modern {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, rgb(15 23 42 / 63%) 0%, rgb(30 41 59 / 52%) 50%, rgb(15 23 42 / 31%) 100%);
    backdrop-filter: blur(24px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05),
		0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.sidebar-modern.hidden {
	transform: translateX(-100%);
}

.sidebar-modern::-webkit-scrollbar {
	width: 4px;
}

.sidebar-modern::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
}

.sidebar-modern::-webkit-scrollbar-thumb {
	background: rgba(148, 163, 184, 0.3);
	border-radius: 2px;
}



.logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
}

.logo-image {
	max-width: 200px;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: brightness(1.1) contrast(1.1);
	transition: all 0.3s ease;
}

.logo-image:hover {
	transform: scale(1.05);
	filter: brightness(1.2) contrast(1.2);
}

/* NAVIGATION */
.sidebar-nav {
	padding: 24px 0;
}

.nav-section {
	padding: 0 24px;
}

.nav-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 20px 0;
	color: rgba(148, 163, 184, 0.9);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.nav-title i {
	color: #3b82f6;
	font-size: 14px;
}

.nav-item {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 16px 20px;
	margin: 0 0 8px 0;
	background: transparent;
	border: none;
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.8);
	text-align: left;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 14px;
	font-weight: 500;
	position: relative;
	overflow: hidden;
	gap: 16px;
}

.nav-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, 
		transparent, 
		rgba(255, 255, 255, 0.03), 
		transparent);
	transition: left 0.5s ease;
}

.nav-item:hover::before {
	left: 100%;
}

.nav-item:hover {
	background: linear-gradient(135deg, 
		rgba(59, 130, 246, 0.1), 
		rgba(147, 51, 234, 0.05));
	color: white;
	transform: translateX(4px);
	box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.nav-item.active {
	background: linear-gradient(135deg, 
		rgba(59, 130, 246, 0.2), 
		rgba(147, 51, 234, 0.1));
	color: #60a5fa;
	border-left: 3px solid #3b82f6;
	box-shadow: 
		0 4px 20px rgba(59, 130, 246, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-icon {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.nav-item:hover .nav-icon {
	background: rgba(59, 130, 246, 0.2);
	transform: scale(1.1);
}

.nav-item.active .nav-icon {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.nav-icon i {
	font-size: 16px;
	transition: all 0.3s ease;
}

.nav-content {
	flex: 1;
	text-align: left;
}

.nav-label {
	display: block;
	font-weight: 500;
	margin-bottom: 2px;
	line-height: 1.2;
}

.nav-desc {
	display: block;
	font-size: 11px;
	color: rgba(148, 163, 184, 0.7);
	font-weight: 400;
}

.nav-arrow {
	color: rgba(148, 163, 184, 0.4);
	font-size: 12px;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.nav-item:hover .nav-arrow {
	color: #3b82f6;
	transform: translateX(4px);
}

/* FOOTER SECTIONS */
.sidebar-footer {
	margin-top: auto;
	padding: 24px;
}

/* SOCIAL SECTION */
.social-section {
	margin-bottom: 24px;
}

/* Social title removed - no longer needed */

.social-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.social-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 12px;
	font-weight: 500;
}

.social-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.social-btn.website:hover { border-color: #10b981; color: #10b981; }
.social-btn.facebook:hover { border-color: #1877f2; color: #1877f2; }
.social-btn.youtube:hover { border-color: #ff0000; color: #ff0000; }
.social-btn.tiktok:hover { border-color: #ff0050; color: #ff0050; }

.social-btn i {
	font-size: 14px;
}

.social-btn span {
	font-weight: 500;
}

/* WEATHER SECTION */


/* Weather header removed - no longer needed */

.weather-info {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.weather-location {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	font-weight: 500;
}

.weather-location i {
	color: #ef4444;
	font-size: 12px;
}

.weather-temp {
	display: flex;
	align-items: center;
	gap: 8px;
	color: white;
	font-size: 14px;
	font-weight: 500;
}

.weather-icon {
	width: 20px;
	height: 20px;
	object-fit: contain;
	filter: brightness(1.1);
}

.weather-temp i {
	color: #fbbf24;
	font-size: 16px;
}

/* TOGGLE BUTTON INSIDE SIDEBAR */
.sidebar-toggle-container {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 10;
}

.toggle-inside {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.toggle-inside:hover {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	transform: scale(1.1);
	box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.toggle-inside:active {
	transform: scale(0.95);
}

/* External toggle for when sidebar is hidden */
.external-toggle {
	position: fixed;
	left: 20px;
	top: 20px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(147, 51, 234, 0.9));
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: white;
	font-size: 18px;
	cursor: pointer;
	z-index: 1002;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 
		0 8px 32px rgba(59, 130, 246, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.05);
}

.external-toggle:hover {
	transform: scale(1.05);
	box-shadow: 
		0 12px 40px rgba(59, 130, 246, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.1);
}

#sidebar.hidden .sidebar-toggle-container {
	display: none;
}

/* Icon transition styles */
.toggle-inside .fa-chevron-left,
.toggle-inside .fa-chevron-right {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: absolute;
}

.toggle-inside .fa-chevron-right {
	opacity: 0;
}

.toggle-inside .fa-chevron-left {
	opacity: 1;
}

/* Ensure compatibility with both ID and class selectors */
#sidebar,
.sidebar-modern {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#sidebar.hidden,
.sidebar-modern.hidden {
	transform: translateX(-100%);
}

#sidebar-toggle,
.toggle-modern {
	position: relative;
	overflow: hidden;
}

/* POPUP STYLES */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(8px);
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.popup-content {
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	color: #1e293b;
	padding: 32px;
	border-radius: 20px;
	max-width: 520px;
	max-height: 70vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 
		0 25px 50px -12px rgba(0, 0, 0, 0.25),
		0 0 0 1px rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(226, 232, 240, 0.8);
	animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: 'Google Sans', sans-serif;
}

@keyframes slideUp {
	from { 
		opacity: 0; 
		transform: translateY(32px) scale(0.95); 
	}
	to { 
		opacity: 1; 
		transform: translateY(0) scale(1); 
	}
}

.popup-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(241, 245, 249, 0.8);
	border: 1px solid rgba(226, 232, 240, 0.8);
	border-radius: 10px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
	color: #64748b;
	transition: all 0.2s ease;
	backdrop-filter: blur(4px);
}

.popup-close:hover {
	background: rgba(239, 68, 68, 0.1);
	border-color: #ef4444;
	color: #ef4444;
	transform: scale(1.1);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
	.sidebar-modern {
		width: 280px;
	}
	
	.external-toggle {
		left: 15px;
		top: 15px;
		width: 45px;
		height: 45px;
	}
	
	.sidebar-toggle-container {
		bottom: 15px;
		left: 15px;
	}
	
	.toggle-inside {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}
	
	.social-grid {
		grid-template-columns: 1fr;
	}
}

/* ANIMATIONS */
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

.nav-item.active .nav-icon {
	animation: pulse 2s infinite;
}

/* TOOLTIP STYLES */
.nav-item[data-tooltip]:hover::after {
	content: attr(data-tooltip);
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	margin-left: 16px;
	padding: 8px 12px;
	background: rgba(0, 0, 0, 0.9);
	color: white;
	border-radius: 6px;
	font-size: 12px;
	white-space: nowrap;
	z-index: 1001;
	pointer-events: none;
	opacity: 0;
	animation: tooltipShow 0.3s ease forwards;
}

@keyframes tooltipShow {
	to { opacity: 1; }
}

/* FANCYBOX CUSTOM STYLES */
.perspective-gallery-popup .fancybox-bg {
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
}

.perspective-gallery-popup .fancybox-toolbar {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(147, 51, 234, 0.9));
	backdrop-filter: blur(20px);
	border-radius: 8px;
	margin: 10px;
}

.perspective-gallery-popup .fancybox-button {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	margin: 2px;
	transition: all 0.3s ease;
}

.perspective-gallery-popup .fancybox-button:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.perspective-gallery-popup .fancybox-caption {
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
	backdrop-filter: blur(20px);
	border-radius: 8px 8px 0 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: white;
	font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 16px;
	font-weight: 500;
	padding: 15px 20px;
	text-align: center;
}

.perspective-gallery-popup .fancybox-thumbs {
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.perspective-gallery-popup .fancybox-thumbs__list a {
	border: 2px solid transparent;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.perspective-gallery-popup .fancybox-thumbs__list a:hover {
	border-color: #3b82f6;
	transform: scale(1.05);
}

.perspective-gallery-popup .fancybox-thumbs__list a.fancybox-thumbs-active {
	border-color: #60a5fa;
	box-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

/* Loading animation for gallery */
.fancybox-loading::before {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

/* =============================================
   FANCYBOX 5 MINIMAL STYLES
   ============================================= */

/* Main backdrop */
.fancybox__backdrop {
	background: rgba(0, 0, 0, 0.9) !important;
}

/* Toolbar styling - minimal dark */
.fancybox__toolbar {
	background: rgba(0, 0, 0, 0.8) !important;
	border-radius: 4px !important;
	margin: 10px !important;
	padding: 6px !important;
}

/* Toolbar buttons - simple style */
.fancybox__button {
	background: rgba(255, 255, 255, 0.1) !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	border-radius: 4px !important;
	margin: 0 2px !important;
	transition: all 0.2s ease !important;
	color: white !important;
	width: 36px !important;
	height: 36px !important;
}

.fancybox__button:hover {
	background: rgba(255, 255, 255, 0.2) !important;
	border-color: rgba(255, 255, 255, 0.4) !important;
}

.fancybox__button svg {
	filter: none !important;
	color: white !important;
}

/* Counter/Infobar styling - minimal */
.fancybox__infobar {
	background: rgba(0, 0, 0, 0.8) !important;
	border-radius: 4px !important;
	padding: 6px 12px !important;
	color: white !important;
	font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	font-size: 14px !important;
	margin: 10px !important;
}

/* Navigation arrows - simple style */
.fancybox__nav .fancybox__button {
	background: rgba(0, 0, 0, 0.6) !important;
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
	border-radius: 50% !important;
	width: 44px !important;
	height: 44px !important;
	transition: all 0.2s ease !important;
}

.fancybox__nav .fancybox__button:hover {
	background: rgba(0, 0, 0, 0.8) !important;
	border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Thumbnails container - simple dark */
.fancybox__thumbs {
	background: rgba(0, 0, 0, 0.9) !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
	padding: 10px 0 !important;
}

/* Individual thumbnail - minimal */
.fancybox__thumb {
	border: 2px solid transparent !important;
	border-radius: 4px !important;
	transition: all 0.2s ease !important;
	overflow: hidden !important;
	margin: 0 4px !important;
}

.fancybox__thumb:hover {
	border-color: #ffffff !important;
}

.fancybox__thumb.is-selected {
	border-color: #ffffff !important;
}

.fancybox__thumb img {
	border-radius: 2px !important;
	transition: all 0.2s ease !important;
}

/* Caption disabled - no captions needed */
.fancybox__caption {
	display: none !important;
}

/* Loading spinner - simple */
.fancybox__spinner {
	background: #ffffff !important;
	border-radius: 50% !important;
}

/* Slideshow progress - simple */
.fancybox__progress {
	background: #ffffff !important;
}

/* Close button - minimal red */
.fancybox__button--close {
	background: rgba(220, 38, 38, 0.8) !important;
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
	border-radius: 50% !important;
	width: 40px !important;
	height: 40px !important;
	transition: all 0.2s ease !important;
}

.fancybox__button--close:hover {
	background: rgba(220, 38, 38, 1) !important;
	border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.fancybox__toolbar {
		margin: 8px !important;
		padding: 4px !important;
	}
	
	.fancybox__button {
		width: 32px !important;
		height: 32px !important;
		font-size: 12px !important;
	}
	
	.fancybox__nav .fancybox__button {
		width: 38px !important;
		height: 38px !important;
	}
	

	
	.fancybox__thumbs {
		padding: 8px 0 !important;
	}
}

/* =============================================
   FULLSCREEN IFRAME STYLES
   ============================================= */
.fullscreen-iframe-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.95);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
}

.fullscreen-iframe-container {
	position: relative;
	width: 95vw;
	height: 95vh;
	max-width: 1400px;
	max-height: 900px;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 
		0 25px 50px -12px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(255, 255, 255, 0.1);
	animation: slideInScale 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInScale {
	0% {
		transform: scale(0.9) translateY(20px);
		opacity: 0;
	}
	100% {
		transform: scale(1) translateY(0);
		opacity: 1;
	}
}

.fullscreen-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 45px;
	height: 45px;
	background: rgba(220, 38, 38, 0.9);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: white;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	z-index: 10001;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fullscreen-close:hover {
	background: rgba(239, 68, 68, 1);
	border-color: rgba(255, 255, 255, 0.5);
	transform: scale(1.15);
	box-shadow: 0 6px 25px rgba(239, 68, 68, 0.5);
}

.fullscreen-content {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
}

.fullscreen-content iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 12px;
}

/* Mobile responsive for fullscreen iframe */
@media (max-width: 768px) {
	.fullscreen-iframe-container {
		width: 98vw;
		height: 98vh;
		border-radius: 8px;
	}
	
	.fullscreen-close {
		top: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	
	.fullscreen-content {
		border-radius: 8px;
	}
	
	.fullscreen-content iframe {
		border-radius: 8px;
	}
}

/* Add keyboard support */
.fullscreen-iframe-overlay[data-keyboard-active="true"] .fullscreen-close {
	animation: pulseButton 1.5s infinite;
}

@keyframes pulseButton {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
	}
}

/* =============================================
   MOBILE RESPONSIVE STYLES
   ============================================= */

/* Mobile Header */
.mobile-header {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 70px;
	background: linear-gradient(90deg, 
		rgba(15, 23, 42, 0.98) 0%, 
		rgba(30, 41, 59, 0.95) 50%, 
		rgba(15, 23, 42, 0.98) 100%);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
	z-index: 1000;
	padding: 0 20px;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-logo {
	flex: 0 0 auto;
}

.mobile-logo-img {
	height: 45px;
	width: auto;
	object-fit: contain;
	filter: brightness(1.1);
}

.mobile-weather {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mobile-weather-info {
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 20px;
	padding: 8px 16px;
	color: #60a5fa;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Google Sans', sans-serif;
}

#mobile-weather-display {
	display: flex;
	align-items: center;
	gap: 6px;
}

.mobile-weather-icon {
	width: 16px;
	height: 16px;
	object-fit: contain;
	filter: brightness(1.2);
}

.mobile-menu-btn {
	flex: 0 0 auto;
}

#mobile-menu-toggle {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: unset;
    box-shadow: none;
    border: none;
    color: white;
}

#mobile-menu-toggle:hover {
	background: rgba(59, 130, 246, 0.2);
	transform: scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9998;
	backdrop-filter: blur(10px);
}

.mobile-menu-overlay.active {
	display: flex;
	animation: fadeInMobile 0.3s ease-out;
}

.mobile-menu-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 85%;
	max-width: 350px;
	height: 100vh;
	background: linear-gradient(180deg, 
		rgba(15, 23, 42, 0.98) 0%, 
		rgba(30, 41, 59, 0.96) 50%, 
		rgba(15, 23, 42, 0.98) 100%);
	backdrop-filter: blur(24px);
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
	transform: translateX(0);
}

.mobile-menu-header {
	padding: 20px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mobile-menu-logo img {
	height: 40px;
	width: auto;
	filter: brightness(1.1);
}

.mobile-menu-close {
	width: 40px;
	height: 40px;
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	border-radius: 50%;
	color: #f87171;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.mobile-menu-close:hover {
	background: rgba(239, 68, 68, 0.2);
	transform: scale(1.1);
}

.mobile-menu-nav {
	padding: 20px;
}

.mobile-nav-item {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 16px 20px;
	margin: 0 0 12px 0;
	background: transparent;
	border: none;
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.8);
	text-align: left;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 16px;
	font-weight: 500;
	gap: 16px;
	font-family: 'Google Sans', sans-serif;
}

.mobile-nav-item:hover {
	background: rgba(59, 130, 246, 0.1);
	color: white;
	transform: translateX(8px);
}

.mobile-nav-item.active {
	background: rgba(59, 130, 246, 0.2);
	color: #60a5fa;
	border-left: 3px solid #3b82f6;
}

.mobile-nav-icon {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mobile-nav-item:hover .mobile-nav-icon {
	background: rgba(59, 130, 246, 0.2);
}

.mobile-nav-item.active .mobile-nav-icon {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.mobile-nav-icon i {
	font-size: 18px;
}

.mobile-menu-footer {
	padding: 20px;
	border-top: 1px solid rgba(148, 163, 184, 0.1);
	margin-top: auto;
}

.mobile-social-buttons {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.mobile-social-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 16px 8px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 12px;
}

.mobile-social-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	transform: translateY(-2px);
}

.mobile-social-btn i {
	font-size: 18px;
}

@keyframes fadeInMobile {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
	/* Hide sidebar on mobile */
	.sidebar-modern {
		display: none !important;
	}
	
	.external-toggle {
		display: none !important;
	}
	
	/* Show mobile header */
	.mobile-header {
		display: flex;
	}
	
	/* Adjust main content for mobile header */
	#pano {
		padding-top: 70px;
	}
	.mobile-menu-btn {
		height: 100%;
		width: 65px;
		justify-content: center;
		align-items: center;
		display: flex;
		background: linear-gradient(45deg, #f99561, #a7bff2);
	}
}

@media (max-width: 480px) {
	.mobile-header {
		height: 65px;
		padding: 0;
	}
	
	.mobile-logo-img {
		height: 40px;
	}
	
	.mobile-weather-info {
		padding: 6px 12px;
		font-size: 13px;
		letter-spacing: 0.3px;
	}
	
	#mobile-menu-toggle {
		width: 42px;
		height: 42px;
		font-size: 16px;
	}
	
	.mobile-menu-content {
		width: 90%;
	}
	
	#pano {
		padding-top: 65px;
	}
} 