@font-face {
  font-family: 'PP Frama';
  src: url('../media/fonts/PPFrama-Black.woff2') format('woff2');
  font-display: swap;
  font-weight: 900;
}

@font-face {
  font-family: 'PP Frama';
  src: url('../media/fonts/PPFrama-BlackItalic.woff2') format('woff2');
  font-display: swap;
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'PP Frama';
  src: url('../media/fonts/PPFrama-Bold.woff2') format('woff2');
  font-display: swap;
  font-weight: 690;
}

@font-face {
  font-family: 'PP Frama';
  src: url('../media/fonts/PPFrama-BoldItalic.woff2') format('woff2');
  font-display: swap;
  font-weight: 690;
  font-style: italic;
}

@font-face {
  font-family: 'PP Frama';
  src: url('../media/fonts/PPFrama-Medium.woff2') format('woff2');
  font-display: swap;
  font-weight: 470;
}

@font-face {
  font-family: 'PP Frama';
  src: url('../media/fonts/PPFrama-MediumItalic.woff2') format('woff2');
  font-display: swap;
  font-weight: 470;
  font-style: italic;
}

@font-face {
  font-family: 'PP Frama';
  src: url('../media/fonts/PPFrama-Regular.woff2') format('woff2');
  font-display: swap;
  font-weight: 370;
}
  
@font-face {
  font-family: 'PP Frama';
  src: url('../media/fonts/PPFrama-RegularItalic.woff2') format('woff2');
  font-display: swap;
  font-weight: 370;
  font-style: italic;
}

/*
body, p {font-family: "PP Frama"; font-size: 2rem;}
.black {font-weight: 900;}
.black-ita {font-weight: 900; font-style: italic;}
.bold {font-weight: 690;}
.bold-ita {font-weight: 690; font-style: italic;}
.medium {font-weight: 470;}
.medium-ita {font-weight: 470; font-style: italic;}
.regular {font-weight: 370;}
.regular-ita {font-weight: 370; font-style: italic;}
*/





		:root {
            --bg-black: #000;
            --text-white: #fff;
            --zinc-100: #f4f4f5;
            --zinc-300: #d4d4d8;
            --zinc-400: #a1a1aa;
            --zinc-500: #71717a;
            --zinc-600: #52525b;
            --zinc-800: #27272a;
            --zinc-900: #18181b;
            --zinc-950: #09090b;
            --max-width: 1600px;
        }
		
		* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
		
		h5 {font-weight: normal;}
		
		body {
            font-family: 'PP Frama', sans-serif;
            background-color: var(--bg-black);
            color: var(--text-white);
            overflow-x: hidden;
            line-height: 1.5;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            cursor: pointer;
            background: none;
            border: none;
            color: inherit;
            font-family: inherit;
        }

        ul {
            list-style-position: inside;
        }

        ::selection {
            background-color: #fff;
            color: #000;
        }
		
		/* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #111;
        }
        ::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header & Nav */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 50;
            transition: all 0.3s ease;
            padding: 1.5rem 1.5rem;
            background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 60px;
        }

        .desktop-nav {
            display: none;
            align-items: center;
            gap: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        @media (min-width: 1280px) {
            .desktop-nav { display: flex; }
        }

        .utilities {
            display: none;
            align-items: center;
            gap: 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
        }

        @media (min-width: 1280px) {
            .utilities { display: flex; }
        }

        .lang-sep {
            height: 1rem;
            width: 1px;
            background-color: var(--zinc-600);
        }

        .mobile-toggle {
            display: block;
            font-size: 1.5rem;
            z-index: 50;
        }

        @media (min-width: 1280px) {
            .mobile-toggle { display: none; }
        }

        /* Dropdown */
        .dropdown { position: relative; }
        .dropdown-content {
            position: absolute;
            left: 0;
            top: 100%;
            margin-top: 1rem;
            width: 16rem;
            background-color: var(--zinc-900);
            border: 1px solid var(--zinc-800);
            padding: 1rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
            transform: translateY(0.5rem);
            border-radius: 0.125rem;
        }
        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-content a {
            display: block;
            padding: 0.5rem 0;
            color: var(--zinc-400);
            transition: color 0.2s;
        }
        .dropdown-content a:hover { color: #fff; }

        .nav-scrolled {
            background-color: rgba(0, 0, 0, 0.95);
            padding: 1rem 1.5rem;
        }
		
	    /* Hover Transitions */
        .hover-fade {
            transition: color 0.3s ease;
        }
        .hover-fade:hover {
            color: var(--zinc-400) !important;
        }

        /* Hover Underline */
        .hover-underline-animation {
            display: inline-block;
            position: relative;
            padding: 0.25rem 0;
        }
        .hover-underline-animation::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #fff;
            transform-origin: bottom right;
            transition: transform 0.25s ease-out;
        }
        .hover-underline-animation:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        /* Mobile Menu */
        #mobile-menu {
            position: fixed;
            inset: 0;
            background-color: #000;
            z-index: 40;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            padding-top: 6rem;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            overflow-y: auto;
        }
        #mobile-menu.open {
            transform: translateX(0);
        }
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            font-size: 1.25rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .mobile-nav-links a {
            border-bottom: 1px solid var(--zinc-800);
            padding-bottom: 1rem;
        }

        /* Hero */
        .hero {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .video-bg, .img-background {
            position: absolute;
            inset: 0;
            background-color: #000;
			/* BG Fallback */
			/*background: url('./CameraFlare_07.jpg') no-repeat center center; */
        }
        .video-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
			 filter: blur(10px); 
        }
        .video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, #000, rgba(0,0,0,0.2), transparent);
        }
		.img-background {
			background-image: url('./CameraFlare_07.jpg');
			background-repeat: no-repeat;
			background-size: cover;
			background-position: center;
		}
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 72rem;
            padding-top: 5rem;
        }
        .hero h1 {
            font-size: 2.25rem;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1;
            letter-spacing: -0.025em;
            margin-bottom: 2rem;
        }
        @media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
        @media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            border: 2px solid #fff;
            padding: 0.75rem 2rem;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            border-radius: 0.125rem;
        }
        .btn-outline:hover {
            background-color: #fff;
            color: #000;
        }

        .hero-text-enter {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease-out forwards;
        }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-10px) translateX(-50%); }
            60% { transform: translateY(-5px) translateX(-50%); }
        }
		
		/* Standard Page */
		
		.page {
            position: relative;
            min-height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
			background: linear-gradient(161deg,rgba(0, 0, 0, 1) 50%, rgba(71, 105, 127, 1) 100%);
        }
		
		.page h1 {
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1;
            letter-spacing: -0.025em;
            margin-bottom: 2rem;
        }
        @media (min-width: 768px) { .page h1 { font-size: 3.5rem; } }
        @media (min-width: 1024px) { .page h1 { font-size: 4rem; } }
		
		.page h2, .page p {margin-bottom: 20px;}
		
		.page .container {
			margin-top: 8%; 
			margin-bottom: 75px;
			padding: 0 75px;
			max-width: 950px;
			/* min-height: 100vh; */
		}

        /* News Section */
        .section-news {
            padding: 5rem 0;
            background-color: #000;
        }
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 3rem;
        }
        .section-header h2 {
            font-size: 2.25rem;
            font-weight: 900;
            text-transform: uppercase;
            font-style:italic;
        }
        @media (min-width: 768px) { .section-header h2 { font-size: 3rem; } }

        .news-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        @media (min-width: 768px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(4, 1fr); } }

        .news-card {
            cursor: pointer;
        }
        .news-thumb {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            margin-bottom: 1rem;
            background-color: var(--zinc-900);
        }
        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            transition: transform 0.7s ease, opacity 0.7s ease;
        }
        .news-card:hover .news-thumb img {
            transform: scale(1.1);
            opacity: 1;
        }
        .news-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background-color: #fff;
            color: #000;
            font-size: 10px;
            font-weight: 700;
            padding: 0.25rem 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .news-date {
            color: var(--zinc-500);
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }
        .news-title {
            font-size: 1.125rem;
            font-weight: 690;
            line-height: 1.4;
            transition: color 0.2s;
			font-style: italic;
        }
        .news-card:hover .news-title { color: var(--zinc-300); }

        /* Activity Grid */
        .activity-section {
            display: grid;
            grid-template-columns: 1fr;
            background-color: var(--zinc-950);
        }
        @media (min-width: 768px) { .activity-section { grid-template-columns: repeat(2, 1fr); } }

        .activity-card {
            position: relative;
            height: 50vh;
            min-height: 400px;
            overflow: hidden;
            border-bottom: 1px solid var(--zinc-900);
        }
        @media (min-width: 768px) {
            .activity-card:nth-child(odd) { border-right: 1px solid var(--zinc-900); }
        }
        .activity-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
            transition: transform 0.6s ease;
        }
        .activity-card:hover .activity-bg { transform: scale(1.05); }
        
        .activity-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0,0,0,0.4);
            transition: background-color 0.5s;
        }
        .activity-card:hover .activity-overlay { background-color: rgba(0,0,0,0.2); }

        .activity-content {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 2.5rem;
            width: 100%;
        }
        .activity-tag {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
            opacity: 0.7;
        }
        .activity-content h3 {
            font-size: 2.25rem;
            font-weight: 690;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
			font-style: italic;
        }
        .activity-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border: 1px solid #fff;
            border-radius: 50%;
            transition: all 0.3s;
        }
        .activity-btn:hover { background-color: #fff; color: #000; }

        /* Split Section */
        .split-section {
            display: grid;
            grid-template-columns: 1fr;
        }
        @media (min-width: 1024px) { .split-section { grid-template-columns: repeat(2, 1fr); } }

        .split-col {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }
        @media (min-width: 1024px) { .split-col { padding: 6rem; } }

        .split-light { background-color: var(--zinc-100); color: #000; }
        .split-dark { background-color: var(--zinc-900); color: #fff; position: relative; overflow: hidden; }
        
        .glow {
            position: absolute;
            top: 0;
            right: 0;
            width: 16rem;
            height: 16rem;
            background-color: var(--zinc-800);
            border-radius: 50%;
            filter: blur(64px);
            opacity: 0.2;
            margin-right: -5rem;
            margin-top: -5rem;
        }

        .split-tag { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; color: var(--zinc-500); }
        .split-dark .split-tag { color: var(--zinc-400); }
        .split-col h2 { font-size: 1.875rem; font-weight: 800; text-transform: uppercase; line-height: 1.2; margin-bottom: 2rem; }
        @media (min-width: 1024px) { .split-col h2 { font-size: 3rem; } }

        .btn-black { border: 2px solid #000; padding: 0.75rem 2rem; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; transition: all 0.3s; }
        .btn-black:hover { background-color: #000; color: #fff; }
		
		
		
		/* Footer */
        footer {
            background-color: #000;
            padding-top: 5rem;
            padding-bottom: 2.5rem;
            border-top: 1px solid var(--zinc-900);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 5rem;
        }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

        .footer-logo { margin-bottom: 2rem; opacity: 0.9; display: block; }
        .social-links { display: flex; gap: 1rem; color: var(--zinc-400); }
        .social-links a:hover { color: #fff; }
        
        .footer-heading { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--zinc-500); margin-bottom: 1.5rem; }
        .footer-links { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: var(--zinc-300); }
        .footer-links a:hover { color: #fff; padding-left: 0.5rem; transition: all 0.2s; }
		
		.footer-bottom {
            border-top: 1px solid var(--zinc-900);
            padding-top: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            color: var(--zinc-600);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        @media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
		
		.legal-links { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1rem; justify-content: center; }
        @media (min-width: 768px) { .legal-links { margin-bottom: 0; } }
        .legal-links a:hover { color: var(--zinc-400); }