:root {
    --gold: #D4AF37;
    --gold-light: #F5D07A;
    --gold-dark: #AA8A2E;
    --white: #FFFFFF;
    --black: #000000;
    --gray-dark: #333333;
    --gray: #555555;
    --gray-light: #EEEEEE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.logo-container {
    width: 100%; /* Takes full width of parent */
    height: 100%; /* Takes full height of parent */
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden; /* Ensures rounded corners clip the image properly */
    border-radius: 20px; /* Adds rounded corners to container */
}

.logo {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px; /* Adds rounded corners to anchor element */
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Maintains aspect ratio */
    object-position: left center; /* Aligns logo to the left */
    transition: all 0.3s ease;
    border-radius: 20px; /* Adds rounded corners to image */
}

.logo:hover img {
    opacity: 0.9;
    transform: scale(1.02); /* Optional: slight zoom on hover */
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .mobile-menu-header .logo-container {
        width: 50px;
        height: 30px;
        border-radius: 15px; /* Slightly smaller radius for mobile */
    }
    
    .mobile-menu-header .logo,
    .mobile-menu-header .logo img {
        border-radius: 15px; /* Consistent radius for mobile */
    }
}
/* Navbar Styles */
.navbar {
    background-color: var(--black);
    color: var(--white);
    padding: 5px 0; /* Reduced from original */
    min-height: 30px; /* Ensures navbar has minimum height */
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-header {
    padding: 10px 15px; /* Reduced vertical padding */
    min-height: 40px; /* Minimum touch target size */
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gold);
    margin-left: 20px;
    display: block;
}

.desktop-menu {
    display: none;
}

.main-menu {
    list-style: none;
    display: flex;
}

.main-menu > li {
    position: relative;
    margin-left: 20px;
}

.main-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    display: block;
    padding: 10px 0;
}

.main-menu a:hover {
    color: var(--gold);
}

.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100vw;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    z-index: 999;
}

.mega-menu-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mega-menu-column {
    flex: 1;
    padding: 0 15px;
}

.mega-menu-column h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--gold-light);
    padding-bottom: 5px;
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin-bottom: 10px;
}

.mega-menu-column ul li a {
    color: var(--gray-dark);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.mega-menu-column ul li a:hover {
    color: var(--gold);
}

.mega-menu-parent:hover .mega-menu {
    display: block;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--black);
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 10px 15px;
    display: flex;                /* Make it flex */
    align-items: center;          /* Align vertically */
    justify-content: space-between; /* Push logo left, button right */
    border-bottom: 1px solid var(--gray);
    min-height: 50px; /* Slightly taller for better touch targets */
}

.mobile-menu-header .logo-container {
    width: 20px;  /* Smaller logo in mobile */
    height: auto;
}

.mobile-menu-header .logo img {
    max-height: 40px; /* Keeps height small */
    width: auto;
    object-fit: contain;
}

.mobile-menu-close {
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
    padding: 20px 0;
}

.mobile-menu-list > li {
    border-bottom: 1px solid var(--gray);
}

.mobile-menu-list a {
    color: var(--white);
    text-decoration: none;
    display: block;
    padding: 15px 20px;
    font-weight: 500;
}

.mobile-submenu {
    list-style: none;
    background-color: var(--gray-dark);
    display: none;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu a {
    padding-left: 40px;
    font-size: 0.9rem;
}

.mobile-submenu-parent > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}


/* Main Content Styles */
main {
    margin-top: 0px;
    min-height: calc(100vh - 70px - 150px);
    padding: 40px 0;
}

/* Footer Styles */
footer {
    background-color: var(--black);
    color: var(--white);
}

.footer-top {
    padding: 50px 0 30px;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-column h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--gold);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--gray-dark);
    color: var(--gold);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--black);
}

.footer-bottom {
    background-color: var(--gray-dark);
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-light);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .desktop-menu {
        display: block;
        flex-grow: 1;
    }
    
    .main-menu {
        justify-content: flex-end;
    }
    
    .logo-container {
        max-width: 300px;
    }
    
    .footer-top .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .footer-column {
        width: calc(50% - 20px);
    }
}

@media (min-width: 992px) {
    .footer-column {
        width: calc(25% - 20px);
    }
    
    main {
        min-height: calc(100vh - 80px - 200px);
    }
    
    .logo-container {
        max-width: 350px;
    }
}

/* Utility Classes */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--gold-dark);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--gold);
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}