* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #08D806ff
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-image: url('../Images/Bigger Butterfly.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps background fixed while scrolling */
    min-height: 100vh;
}

a {
   text-decoration: none;
   color: #333;
}

ul {
    list-style: none;
}

image {
  max-width: 100%;
  
}

/* Navbar with blur and dark overlay */
.navbar {
    background: rgba(0, 39, 1, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Make all navbar text WHITE */
.navbar a {
    color: #fff !important;
}

.navbar .text-logo h1 {
    color: #fff !important;
    font-size: 24px;
    font-weight: 600;
}

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

.navbar .main-menu ul{
    display: flex;
}

.navbar .text-logo {
    font-weight: 600;
    margin-left: 20px;
} 

.navbar ul li a {
    padding: 10px 20px;
    display: block;
    font-weight: 600;
    transition: 0.5s;
    color: #fff;
}

.navbar .main-menu ul li a:not(.btn):hover {
    background: linear-gradient(135deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Keep button text white on hover */
.navbar .main-menu ul li a.btn:hover {
    color: #fff !important;
}

.navbar .logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* Utility Classes */
.container {
    max-width: auto;
    margin: 0 auto;
    padding: 0 15px;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 13px 20px;
    background: #fff;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #333;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
}

.btn:hover {
    background: #333;
    color: #fff;
}

.btn-primary {
    background: linear-gradient(135deg, #002701 0%, #08D806 100%);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #08D806 0%, #002701 100%);
    color: #fff;
}

.btn-light {
    background: transparent;
    color: #333;
}

.btn-light:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Hero Section */
/* Hero Section - Extra Large */
.Hero {
    min-height: 120vh; /* Bigger than viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px;
    margin-bottom: 0;
}

/* Dark overlay for readability - extend to cover full page */
.Hero::before {
    content: '';
    position: fixed; /* Changed from absolute to fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 39, 1, 0.3);
    z-index: -1; /* Behind everything */
}

.Hero-content {
    text-align: center;
    color: #fff;
    z-index: 1;
    position: relative;
    max-width: 800px;
}

/* Hero Text Styles */
.Hero-heading {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5); /* Adds depth and readability */
}

.Hero-subheading {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 80px; /* More space before buttons - minimalistic */
    opacity: 0.95;
    letter-spacing: 0.5px;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 60px; /* Extra space for minimalistic feel */
}

/* Footer */
.footer {
    background: rgba(0, 39, 1, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 20px 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    margin-top: 0; /* Remove gap */
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

/* Left: Company Name */
.footer-logo h2 {
    font-size: 32px;
    font-weight: 300; /* Light font */
    color: rgba(255, 255, 255, 0.9); /* Off-white */
    line-height: 1.2;
    margin: 0;
}

/* Right: Links */
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300; /* Light font */
    font-size: 16px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #08D806;
    padding-left: 5px;
}

/* Bottom: Copyright */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 300;
}

/* Right: Links in 2 columns */
.footer-links ul {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 10px 40px; /* Vertical and horizontal gap */
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    
    /* Instant hide when opening, smooth fade when closing */
    .Hero,
    .footer {
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    body.menu-open .Hero,
    body.menu-open .footer {
        opacity: 0;
        visibility: hidden;
        transition: none; /* Instant when opening */
    }
    
    /* Menu transition */
    .navbar .main-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgb(0, 39, 1);
        transform: translateX(100%);
        transition: transform 0.3s ease; /* Smooth slide */
        padding-top: 100px;
        z-index: 10000;
        overflow-y: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar .main-menu.active {
        transform: translateX(0);
    }
}

/* Tablets and smaller (below 768px) */
@media (max-width: 768px) {
    
    /* Compact Navbar with Hamburger */
    .navbar {
        padding: 10px 15px;
    }
    
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar .logo-section {
        gap: 8px;
        align-items: center;
    }
    
    .navbar .logo img {
        max-width: 30px;
    }
    
    .navbar .text-logo {
        margin-left: 8px;
    }
    
    .navbar .text-logo h1 {
        font-size: 12px;
    }
    
    /* Hamburger Button */
    .hamburger {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        z-index: 10001;
        position: relative;
    }
    
    /* Full Screen Overlay Menu */
    .navbar .main-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 39, 1, 0.98);
        backdrop-filter: blur(20px);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding-top: 100px;
        z-index: 10000;
        overflow-y: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar .main-menu.active {
        transform: translateX(0);
    }
    
    .navbar .main-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
    }
    
    .navbar ul li {
        width: 100%;
    }
    
    .navbar ul li a {
        padding: 25px;
        font-size: 18px;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar ul li a.btn {
        margin: 20px auto;
        width: 80%;
        max-width: 250px;
        text-align: center;
        border-bottom: none;
    }
    
    /* Hero Section - Compact */
    .Hero {
        min-height: 70vh;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .Hero-heading {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .Hero-subheading {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px;
    }
    
    /* SUPER COMPACT FOOTER */
    .footer {
        padding: 20px 15px 12px;
    }
    
    .footer .container {
        max-width: 100%;
    }
    
    .footer-content {
        display: block;
        margin-bottom: 15px;
    }
    
    /* Logo compact boven */
    .footer-logo {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .footer-logo h2 {
        font-size: 13px;
        line-height: 1.2;
        display: inline;
        margin: 0 5px;
    }
    
    /* Links in 2 kolommen */
    .footer-links ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 20px;
        margin: 0 auto;
        max-width: 300px;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .footer-links a {
        font-size: 11px;
        display: block;
        padding: 5px;
    }
    
    /* Copyright super klein */
    .footer-bottom {
        padding-top: 12px;
        margin-top: 8px;
    }
    
    .footer-bottom p {
        font-size: 9px;
        margin: 0;
    }
}

/* Mobile phones (below 480px) */
@media (max-width: 480px) {
    
    .navbar .logo img {
        max-width: 25px;
    }
    
    .navbar .text-logo h1 {
        font-size: 10px;
    }
    
    .Hero-heading {
        font-size: 26px;
    }
    
    .Hero-subheading {
        font-size: 15px;
    }
    
    .footer-logo h2 {
        font-size: 12px;
    }
    
    .footer-links a {
        font-size: 10px;
    }
    
    .footer-bottom p {
        font-size: 8px;
    }
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
} 