/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    overflow-x: hidden;
}

/* ==========================================
   NAVIGATION BAR (Fixes the doubling height/width)
   ========================================== */
header, .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px; /* Forces a slim, consistent height */
    background-color: #000000;
    display: flex;
    justify-content: flex-start; /* Keeps menu items aligned to the right */
    align-items: top;        /* Centers items vertically */
    padding: 0 20px;
    z-index: 1000;
    border-bottom: 1px solid #111;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px; /* Clean spacing between menu items */
}

.nav-links a {
    color: #FF5F1F; /* Matches the orange theme */
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff; /* Turns white on hover */
}

/* ==========================================
   HERO SECTION (Pattaya Background)
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    padding-top: 60px; /* Prevents navbar from covering content */
    background: url('your-pattaya-background.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center; /* Vertically centers the text block */
    padding-left: 10%;
}

/* ==========================================
   NEON ORANGE TEXT STYLING
   ========================================== */
.hero-title {
    color: #FF5F1F; /* Vibrant Neon Orange */
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: 4.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    
    /* Neon Glow Effect */
    text-shadow: 
        0 0 5px #FF5F1F,
        0 0 10px #FF5F1F,
        0 0 20px #FF8C00,
        0 0 40px #FF0000;
}

.hero-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ==========================================
   KUKAMAN CHARACTER POSITIONING
   ========================================== */
.character-kukaman {
    position: absolute;
    bottom: 0;
    right: 5%;
    height: 90%; /* Adjusts size relative to screen height */
    z-index: 5;
    pointer-events: none; /* Allows clicks to pass through if needed */
}

/* BBR69 Sign Positioning */
.sign-post {
    position: absolute;
    bottom: 15%;
    right: 30%;
    z-index: 4;
}