/* ============================================
   FONT IMPORT (Orbitron - Same as Qelvory)
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', 'Arial', sans-serif;
    background: #050510;
    color: #FFFFFF;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   BACKGROUND CONTAINER
   ============================================ */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   CONTENT OVERLAY
   ============================================ */
.content-overlay {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* ============================================
   COLOR VARIABLES
   ============================================ */
:root {
    --bg-dark: #050510;
    --bg-card: rgba(10, 20, 40, 0.85);  /* MORE OPAQUE */
    --bg-card-hover: rgba(10, 20, 40, 0.95);
    --cyan-neon: #00D9FF;
    --cyan-bright: #00F5FF;
    --purple-neon: #7B2FFF;
    --purple-bright: #9D5FFF;
    --mint-neon: #00FFA3;
    --text-primary: #FFFFFF;
    --text-secondary: #8BA3C7;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
}

h1 { font-size: 64px; }
h2 { font-size: 48px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

a {
    text-decoration: none;
    color: inherit;
}

p {
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   TEXT SHADOW FOR READABILITY
   ============================================ */
.headline, .section-title, .service-card h3, .feature-card h3, .destination-card h3 {
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.8),
                 0 0 40px rgba(0, 217, 255, 0.5),
                 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ============================================
   SCROLLBAR CUSTOM
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cyan-neon), var(--purple-neon));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--cyan-bright), var(--purple-bright));
}

/* ============================================
   SELECTION COLOR
   ============================================ */
::selection {
    background: var(--cyan-neon);
    color: var(--bg-dark);
}

::-moz-selection {
    background: var(--cyan-neon);
    color: var(--bg-dark);
}