/* General Styles */
body {
    background-color: #2B2B2B;
    color: #E6E6E6; /* Light text for readability */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Branding */
.brand {
    font-family: Lato, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #4A4A4F;
}

/* Background Colors */
.light-bg {
    background-color: #fff;
}

.dark-bg {
    background-color: #445261 !important;
}

.main-bg {
    background-color: #F9FAFC;
}

/* Navbar */
#header-clr-container {
    max-height: 67px;
}

.navbar {
    margin-bottom: 20px;
}

#navbarMenu {
    width: 50% !important;  
    right: 0; 
    left: auto;  
    transition: all 0.3s ease-in-out;  
    border-radius: 0 !important;
}

.logo {
    width: 120px;
    height: 50px;
    object-fit: cover;
}

#navbarMenu.show {
    transform: translateX(0);
}

.offcanvas-body {
    text-align: center;
}

/* Header Styling */
.custom-header-bg {
    background-color: #1C1C1E; /* Deep Charcoal */
}

/* Gold Accent for Navbar Links */
.text-gold {
    color: #C9A66B !important;  /* Gold */
    transition: color 0.3s ease-in-out;
}

.text-gold:hover {
    color: #E6C07B !important;  /* Slightly lighter gold on hover */
}

/* Navbar Toggle Button */
.navbar-toggler {
    color: white;
    border: none;
}

/* Adjust Logo Size */
.logo {
    max-height: 50px;
}

/* Buttons */
.btn-signup,
.btn-edit {
    background-color: #188181;
    color: #fff;
}

.btn-signup:hover {
    background-color: #fff;
    color: #23BBBB;
}

/* =========================
   Hero Section - Adjustments
   ========================= */
   .hero {
    position: relative; /* Allows text overlay */
    width: 100vw; /* Ensures full width */
    overflow: hidden; /* Prevents unwanted scroll */
}

/* Hero Image - Full Width */
.hero-image {
    width: 100vw; /* Makes sure it spans the whole screen */
    height: 90vh; /* Keeps proportion */
    object-fit: cover; /* Ensures proper cropping */
}

/* Hero Text - Increased Width */
.hero-text {
    position: absolute;
    top: 65%;
    right: 3%; /* Slightly closer to edge */
    transform: translateY(-50%);
    text-align: right;
    max-width: 50%; /* Increased width for better readability */
}

/* Headings - Larger and More Spaced */
.hero-text h1 {
    font-size: 3rem; /* Larger for better emphasis */
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px; /* Adds spacing */
}

/* Paragraph - Better Readability */
.hero-text p {
    font-size: 1.4rem;
    color: #EAEAEA;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button Styling */
.hero-text .btn {
    background-color: #C9A66B;
    color: #1C1C1E;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    padding: 12px 20px;
    font-size: 1.2rem;
}

.hero-text .btn:hover {
    background-color: #E6C07B;
    box-shadow: 0px 0px 10px rgba(201, 166, 107, 0.6);
}

/* =========================
   Responsive Adjustments
   ========================= */
@media (max-width: 992px) {
    .hero-text {
        right: 5%;
        max-width: 60%; /* More space on medium screens */
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-text {
        left: 5%;
        right: auto;
        max-width: 90%;
        text-align: center !important;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}


/* Footer Styling */
footer {
    background-color: #1C1C1E;  /* Deep Charcoal */
    color: white;  /* White text */
    padding: 20px 0;
    border-top: 2px solid #8C6A4F;  /* Bronze Accent */
    text-align: center;
}

/* Footer Navigation Links */
.footer-link {
    color: #C9A66B !important;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
}

.footer-link:hover {
    color: #E6C07B !important;  /* Lighter Gold */
}

/* Footer Social Media Icons */
.social-icon i {
    font-size: 24px;
    color: #C9A66B;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.social-icon:hover i {
    color: #E6C07B;
    transform: scale(1.1);  /* Slight pop effect */
}

/* Footer Logo */
.footer-logo {
    max-height: 40px;
}

/* Position footer at the bottom */
main {
    flex-grow: 1;
}

/* Menu Page Styling */
.intro-text {
    margin-bottom: 40px;
    text-align: center;
}

.intro-text p {
    max-width: 550px;
    text-align: center;
    margin: 20px auto 0 auto;
}

/* Offcanvas Menu */
.offcanvas {
    background-color: #1C1C1E !important;  /* Consistent dark theme */
}

.offcanvas-body .nav-link {
    color: #C9A66B !important;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.offcanvas-body .nav-link:hover {
    color: #E6C07B !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-link {
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .nav.col-md-4 {
        justify-content: center !important;
    }
}

/* ==========================
   Menu Tabs - Minimalist with Hover Underline & Zoom
   ========================== */
   #menu-tabs {
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Style for Each Tab */
#menu-tabs .nav-item {
    margin: 0 10px; /* Adds spacing between tabs */
}

/* Default Tab Link Styling */
#menu-tabs .nav-link {
    color: #444 !important; /* Neutral dark gray text */
    font-size: 1.2rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out, border-bottom 0.2s ease-in-out;
    background-color: transparent;
    border: none;
    position: relative;
}

/* Hover Effect - Underline & Zoom */
#menu-tabs .nav-link:hover {
    color: #222 !important; /* Slightly darker text */
    transform: scale(1.05); /* Small zoom-in effect */
}

/* Underline Effect on Hover */
#menu-tabs .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #222; /* Darker gray for contrast */
    transition: width 0.2s ease-in-out;
    position: absolute;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
}

/* Expands underline on hover */
#menu-tabs .nav-link:hover::after {
    width: 100%;
}

/* Active Tab */
#menu-tabs .nav-link.active {
    color: #222 !important; /* Slightly darker text */
    font-weight: 600;
    border-bottom: 2px solid #222 !important; /* Subtle underline for active tab */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #menu-tabs .nav-link {
        font-size: 1rem;
        padding: 8px 12px;
    }
}
