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

body {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

 /* ===== ENHANCED NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            background-color: #C6A663;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        }

        .navbar.scrolled {
            padding: 10px 0;
            background-color: #C6A663;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
            width: auto;
            display: block;
            transition: all 0.3s ease;
        }

        /* Desktop Navigation */
        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            color: red;
            text-transform: uppercase;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #ffffff; 
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #d43737; /* Black underline */
            transition: all 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* Hamburger Menu Button */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 25px;
        }

        .hamburger-line {
            width: 100%;
            height: 3px;
            background-color: #000000; /* Black hamburger lines */
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .navbar {
                padding: 12px 0;
            }
            
            .logo img {
                height: 35px;
            }
            
            /* Hide desktop menu, show hamburger */
            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: #ffffff; /* White background for mobile menu */
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 80px 30px 30px;
                transition: left 0.4s ease;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
                gap: 0;
                z-index: 1000;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-link {
                width: 100%;
                padding: 15px 0;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                color: #000; /* Black text for mobile links */
                text-transform: uppercase;
            }
            
            
            /* Keep mobile labels black for all states */
            .nav-link:hover,
            .nav-link.active {
                color: #000;
            }
            .nav-link:last-child {
                border-bottom: none;
            }
            
            .nav-link:hover::after,
            .nav-link.active::after {
                width: 40px; /* Shorter underline on mobile */
                background-color: #000; /* Black underline */
            }
            
            .hamburger-btn {
                display: flex;
            }
            
            /* Overlay when menu is open */
            .nav-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 999;
            }
            
            .nav-overlay.active {
                display: block;
            }
            
            /* Hamburger animation */
            .hamburger-btn.active .hamburger-line:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            
            .hamburger-btn.active .hamburger-line:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger-btn.active .hamburger-line:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }
        }

        /* Tablet adjustments */
        @media (max-width: 992px) and (min-width: 769px) {
            .nav-menu {
                gap: 20px;
            }
            
            .nav-link {
                font-size: 0.85rem;
                color: #000; /* Black text for tablet */
            }
        }

    /* RESET & GLOBAL */
    * {
      box-sizing: border-box;
      user-select: none; /* make it feel like a static window */
    }

    body {
      background: #008080;  /* that teal green Windows 95/98 desktop */
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      margin: 0;
      font-family: 'MS Sans Serif', Tahoma, Geneva, 'Segoe UI', sans-serif;
      font-size: 12px;
      image-rendering: pixelated;  /* tiny extra retro vibe */
      image-rendering: crisp-edges;
    }

    /* THE WINDOW – old school 3D bevel */
    .window {
      width: 320px;
      background: #c0c0c0;        /* classic light grey */
      border-width: 2px;
      border-style: solid;
      border-color: #ffffff #808080 #808080 #ffffff;  /* top/left light, bottom/right dark */
      box-shadow: 2px 2px 0 0 #00000080; /* subtle drop shadow to lift it */
      padding: 3px 3px 3px 3px;
      animation: windowAppear 0.5s ease-out;   /* gentle entrance animation */
    }

    /* TITLE BAR – deep blue, white text, fat border */
    .title-bar {
      background: #000080;         /* navy blue */
      color: #ffffff;
      padding: 4px 4px 4px 6px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 1px solid #c0c0c0;  /* inner light border */
      margin-bottom: 3px;
      font-weight: bold;
      letter-spacing: 0.5px;
      font-size: 12px;
    }

    .title-bar-text {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* window controls – only the ✕ button, minimal */
    .title-bar-controls {
      display: flex;
    }

    .win-close {
      background: #c0c0c0;
      border-width: 2px;
      border-style: solid;
      border-color: #ffffff #808080 #808080 #ffffff;  /* raised button */
      color: #000;
      width: 20px;
      height: 20px;
      font-size: 14px;
      line-height: 14px;
      text-align: center;
      font-weight: bold;
      cursor: default;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: none;
      font-family: 'Courier New', monospace;  /* make the X a bit sharper */
    }

    .win-close:active {
      border-color: #808080 #ffffff #ffffff #808080;  /* pressed effect */
    }

    /* WINDOW BODY — inner area with message */
    .window-body {
      background: #c0c0c0;
      border: 2px solid #808080;   /* dark inner border */
      padding: 16px 12px 14px 12px;
    }

    /* message area: icon + text with blinking cursor */
    .message-area {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .msg-icon {
      width: 40px;
      height: 40px;
      background: #ffffff;
      border: 2px solid #808080;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      box-shadow: inset 1px 1px 0 0 #dfdfdf;
    }

    .msg-text {
      font-size: 20px;          /* quite big, minimal but bold */
      font-weight: normal;
      color: #000;
      line-height: 1.2;
      letter-spacing: 0.5px;
      font-family: 'Courier New', 'MS Sans Serif', monospace;  /* gives old terminal touch */
    }

    /* BLINKING CURSOR — classic underscore blink */
    .blink {
      animation: cursorBlink 1.2s step-end infinite;
      margin-left: 2px;
      font-size: 22px;
      font-weight: bold;
      display: inline-block;
    }

    @keyframes cursorBlink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    /* OK button – classic grey 3D */
    .button-ok {
      background: #c0c0c0;
      border-width: 2px;
      border-style: solid;
      border-color: #ffffff #808080 #808080 #ffffff;  /* raised */
      padding: 6px 18px;
      font-size: 13px;
      font-family: 'MS Sans Serif', Tahoma, sans-serif;
      font-weight: normal;
      text-align: center;
      min-width: 80px;
      cursor: default;
      box-shadow: none;
      margin-top: 20px;
      margin-left: auto;   /* push to the right */
      display: block;
    }

    .button-ok:active {
      border-color: #808080 #ffffff #ffffff #808080;  /* pressed effect */
    }

    /* optional extra minimal animation: title bar subtle pulse (very discreet) */
    .title-bar {
      animation: titlePulse 3s infinite ease-in-out;
    }

    @keyframes titlePulse {
      0%, 100% { background-color: #000080; }
      50% { background-color: #0a0a9e; }    /* just a hint of life */
    }

    /* window appear keyframes */
    @keyframes windowAppear {
      0% {
        opacity: 0;
        transform: scale(0.92) translateY(6px);
      }
      100% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    /* tiny detail: make the close X non-functional, just for looks */
    .win-close {
      pointer-events: none;   /* it's just decoration, like a real static mockup */
    }

    /* make everything feel even more static but animated */
    .window, .title-bar, .button-ok, .win-close {
      transition: none;       /* no extra transitions, only keyframe animations */
    }

    /* old screen flicker? optional but minimal – i'll add a very faint scanline */
    body::after {
      content: '';
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: repeating-linear-gradient(0deg, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 2px, transparent 2px, transparent 4px);
      pointer-events: none;
      z-index: 999;
    }
