@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');


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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    color: #333;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/bg5.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.navbar {
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    color: #138B83;
    font-size: 20px;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    font-size: 26px;
    background: none;
    color: #fff;
    border: none;
    cursor: pointer;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu li a {
    color: #87ACA3;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 10px;
    transition: color 0.3s ease; 
    display: flex;
    align-items: center; 
    gap: 5px;
    position: relative; 
    overflow: hidden;
}

.nav-menu li a i {
    font-size: 16px; 
    margin-right: 3px; 
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2B7C85; 
    transform: scaleX(0);
    transform-origin: bottom right; 
    transition: transform 0.3s ease-out;
}

.nav-menu li a:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}

.nav-menu li a.active {
    color: #2B7C85;
}

.nav-menu li a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #2B7C85;
    border-bottom: 2px solid #2B7C85;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 87vh;
    position: relative;
    color: #fff;
    text-align: center;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4));
    z-index: 0;
}

.hero-text {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: fadeIn 1s ease-in-out;
}

.hero-text h1 {
    font-family: 'Tangerine', cursive;
    font-size: 65px;
    color: #37BEB0;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}

.hero-text p { 
    font-size: 20px;
    font-weight: 300;
    color: #A4E5E0;
    line-height: 1.6;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-text h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    color: #248498;
    margin-top: 20px;
    font-weight: 600;
}

.t3 {
    color: #429E9D;
}

.cta-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    border-radius: 30px;
    background: #00C4B0;
    color: #1f1f1f;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.1);
    background: #67fff5;
    box-shadow: 0 8px 20px rgba(103, 255, 245, 0.6), 0 5px 15px rgba(0,0,0,0.3);
}

footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    gap: 10px;
}

.social-links {
    margin-top: 10px;
    display: flex;
    gap: 15px; 
}

.social-links a {
    color: #fff; 
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #00C4B0; 
    transform: translateY(-3px); 
}

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

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        text-align: right;
        padding: 20px;
    }

    .nav-menu-visible {
        display: flex;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text h2 {
        font-size: 20px;
    }

    .hero-text p {
        font-size: 16px;
    }
}
