/* GLOBAL */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f7f7f7;
    color: #1b4965;
}

/* HEADER */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background: #2ec4b6;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}



/* ✔ FIXED: logo no longer cut off, no longer oversized */
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0;
    background: none;
}

.logo-icon img {
    height: 150px;   /* your actual image height */
    width: auto;
    display: block;
}

/* KEEP NAV ON RIGHT */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    color: black;
}


nav {
    margin-left: auto;
    display: flex;
    gap: 20px;
}

nav a:hover {
    color: #001f3f; /* navy blue */
}


nav a {
    color: white;
    margin: 0 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

nav a:hover {
    opacity: 0.8;
}

/* HERO */
.hero {
    height: 80vh;
    background-image: url('/images/sebastian.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 40%;
    transform: translateY(-40%);
    animation: fadeIn 2s ease;
}

.hero h1 {
    font-size: 52px;
    color: #0f7b6c;
}

.hero p {
    font-size: 22px;
    color: #1b4965;
}

/* SECTIONS */
.section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
    animation: fadeInUp 1.2s ease;
}

.section h1, .section h2 {
    color: #0f7b6c;
    text-align: center;
}

/* CARDS */
.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

/* BUTTONS */
button, .btn {
    background: #2ec4b6;
    color: white;
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

button:hover, .btn:hover {
    background: #0f7b6c;
}

/* FORMS */
input, textarea, select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 14px;
}

/* FOOTER */
footer {
    background: #0f7b6c;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

.footer-links a {
    color: #ffffff;
    margin: 0 8px;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* DASHBOARD */
.dashboard {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 240px;
    background: #0f7b6c;
    color: white;
    padding: 20px;
}

.sidebar h2 {
    margin-top: 0;
}

.sidebar a {
    display: block;
    color: white;
    padding: 10px 0;
    text-decoration: none;
    font-size: 14px;
}

.sidebar a:hover {
    opacity: 0.7;
}

.dashboard-content {
    flex: 1;
    padding: 30px;
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    nav a {
        line-height: 1.4;
        padding: 4px 0;
        font-size: 15px;
    }

    .hero {
        height: 60vh;
    }
	/* HAMBURGER BUTTON (MOBILE ONLY) */
.hamburger {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: white;
}

/* MOBILE MENU */
@media (max-width: 768px) {

    nav {
        display: none;              /* hide menu by default */
        flex-direction: column;
        width: 100%;
        background: #2ec4b6;
        padding: 10px 0;
    }

    nav a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .hamburger {
        display: block;             /* show hamburger */
    }

    header {
        flex-direction: row;
        align-items: center;
    }

    .logo {
        flex: 1;
    }

    .nav-open {
        display: flex !important;   /* show menu when toggled */
    }
/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    font-size: 34px;
    cursor: pointer;
    color: white;
}

/* FULLSCREEN OVERLAY MENU */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 123, 108, 0.97); /* deep teal overlay */
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.mobile-menu-links a {
    display: block;
    font-size: 28px;
    color: white;
    text-decoration: none;
    margin: 18px 0;
    font-weight: 600;
    transition: 0.2s;
}

.mobile-menu-links a:hover {
    color: #001f3f; /* navy blue hover */
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

    nav {
        display: none; /* hide desktop nav */
    }

    .hamburger {
        display: block; /* show hamburger */
    }
}

