@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-teal: #0a607e;
    --soft-bg: #f8fbff;
    --text-main: #2d3436;
    --transition: all 0.3s ease;
}

/* Elegant Top Nav */
.top-nav {
    background: var(--primary-teal);
    padding: 8px 0;
}

.top-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin-left: 20px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    transition: var(--transition);
}

.top-nav a i {
    margin-right: 6px;
    font-size: 12px;
}

.top-nav a:hover {
    color: #fff;
}

/* Main Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar-brand {
    font-family: "Merriweather Sans", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-teal) !important;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: #5e5d5e;
    font-weight: 300;
}

.nav-link {
    font-family: "Poppins", sans-serif;
    color: var(--text-main) !important;
    font-weight: 500;
    font-size: 16px;
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
}

/* Underline Hover Effect */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-teal);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Elegant Button */
.btn-elegant {
    background: var(--primary-teal);
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    box-shadow: 0 4px 15px rgba(10, 96, 126, 0.2);
    transition: var(--transition);
}

.btn-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 96, 126, 0.3);
    background: #084d65;
}

/* Dropdown Styling */
.dropdown-menu {
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
}

.dropdown-item {
    border-radius: 6px;
    padding: 8px 15px;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: var(--soft-bg);
    color: var(--primary-teal);
}

/* Responsive fixes */
@media (max-width: 991px) {
    .nav-actions {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
    .dropdown-menu-end{
        padding-left: 200px;
    }
}
@media (max-width: 600px) {
    .navbar {
        padding: 7px 0;
    }
    /* 1. Mobile Menu Links */
    .navbar-nav .nav-link {
        font-size: 12px !important;
        letter-spacing: 1px;
        padding: 5px 0 !important;
    }
    .lang-link, .user-greeting {
        font-size: 12px !important;
        letter-spacing: 1px;
    }
    
    /* 4. Navbar Toggler - Scaled down to match */
    .custom-toggler {
        transform: scale(0.8); /* Makes the icon smaller and more delicate */
    }

}


@media (max-width: 450px) {
    .top-nav a span { display: none; }
    .top-nav a i { font-size: 16px; }
}

/*============================================ footer ==============================================================*/
.footer {
    padding: 40px 0 10px;
    background: #052a36; /* Deeper midnight teal */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
}

/* Background "After-Glow" */
.footer::before {
    content: "";
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-heading {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}

.footer-divider {
    width: 50px;
    height: 2px;
    background: var(--soft-gold);
    margin: 0 auto 40px;
    transition: width 0.5s ease;
}

.footer:hover .footer-divider {
    width: 100px; /* Subtle interaction when looking at footer */
}

/* Menu Styling */
.footer .menu {
    margin-bottom: 30px;
}

.footer .menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 20px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer .menu a:hover {
    color: var(--soft-gold);
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
    transform: translateY(-3px);
}

/* Social Icons - Circular Boutique Look */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    line-height: 30px;
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-icons a:hover {
    background: var(--soft-gold);
    border-color: var(--soft-gold);
    color: #052a36;
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

/* Copyright Section */
.copyright-area {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
}

.footer .copyright a {
    color: rgba(197, 160, 89, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.footer .copyright a:hover {
    color: var(--soft-gold);
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .footer { padding: 60px 0 30px; }
    .footer .menu a { display: block; margin: 15px 0; }
    .social-icons { gap: 15px; }
}
@media (max-width: 600px) {
    .footer-heading {
        font-size: 20px;
        letter-spacing: 2px;
    }
    .footer .menu a {
        font-size: 12px;
        letter-spacing: 1px;
    }
}




