/* ==================== 全域樣式 ==================== */
:root {
    --primary-color: #caa592;
    --secondary-color: #bd8d75;
    --accent-color: #caa592;
    --text-dark: #543220;
    --text-light: #ffffff;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Noto Sans TC', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== 導航欄 ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2px;
}

.brand-subtitle {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}
.nav-menu-inner{
    list-style: none;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;    
}

.nav-menu-inner {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.menu:hover .nav-menu-inner {
    opacity: 1;
    visibility: visible;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu {
    list-style: none;
    display: flex; 
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item-dropdown {
    position: relative; 
}

.nav-link {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    color: #4a362a; 
}

.dropdown-menu {
    display: none;         
    position: absolute;    
    top: 100%;              
    left: 0;                
    background-color: #ffffff;
    min-width: 140px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    padding: 10px 0;
    margin: 0;
    list-style: none;
    z-index: 999;  
    border-radius: 4px;
}

.nav-item-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 8px 20px;
    display: block;
    color: #4a362a;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background-color: #f8f5f2;
    color: #8c6d5a;
}

/* ==================== 主橫幅 ==================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #bd8d75 0%, #caa592 100%);
    /*background-image: url("header.png"),
                      linear-gradient(135deg, rgb(202, 165, 146, 0.85) 0%, rgb(0, 0, 0, 0.85) 100%);*/
    background-image: url("首岸.png");                  
    background-size: cover;
    background-position: center 100px;
    background-blend-mode: overlay;
    background-repeat:no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(to bottom, rgb(202, 165, 146, 0.1), rgb(0, 0, 0, 0.9));*/
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    margin-top:7dvw;
}

.hero-badge {
    display: inline-block;
    background: white;
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin: 30px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-en {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 4px;
    opacity: 0.95;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.hero-location i {
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--text-light);
    font-size: 1.5rem;
}

/* ==================== 新主橫幅 ==================== */
/* Main Container */
/* Container Setup */
.new-hero {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    justify-content: center; 
    align-items: center;
}

/* Background Track */
.new-hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.new-hero-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); /* Professional smooth slide */
}

.new-hero-slide {
    width: 33.333%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.new-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* Typography & Content Styling */
.new-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light, #fff);
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.new-hero-badge {
    display: inline-block;
    background: white;
    color: var(--text-dark, #333);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.new-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.new-hero-subtitle-en {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 4px;
    opacity: 0.95;
}

.new-hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.new-hero-location i {
    color: var(--secondary-color, #d4af37);
}

.new-hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.new-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bullet Navigation */
.new-hero-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.dot.active {
    background-color: #fff;
    transform: scale(1.3);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { transform: scale(1); }
}


/* ==================== 按鈕樣式 ==================== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--text-light);
    border-color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-full {
    width: 100%;
}

/* ==================== 公司介紹 ==================== */
.company-intro {
    padding: 80px 0;
    background: var(--bg-white);
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.intro-tagline {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-description {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.intro-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.intro-feature-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* ==================== 區塊標題 ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
}

/* ==================== 樓盤特色 ==================== */
.features {
    padding: 80px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--text-light);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ==================== 樓盤亮點 ==================== */
.highlights {
    padding: 80px 0;
    background: var(--bg-white);
}

.highlights-grid {
    display: grid;
    gap: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.highlight-item:hover {
    box-shadow: var(--shadow-md);
}

.highlight-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), #e0c080);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.highlight-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.highlight-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ==================== 文檔下載區 ==================== */
.documents {
    padding: 80px 0;
    background: var(--bg-light);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.document-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.document-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--text-light);
}

.document-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.document-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* ==================== 聯絡我們 ==================== */
.contact {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-intro {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-item i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    margin-top: 5px;
}

.contact-detail-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-detail-item p {
    color: var(--text-gray);
}

.contact-detail-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail-item a:hover {
    color: var(--primary-color);
}

.contact-whatsapp {
    margin-top: 30px;
}

/* 聯絡表單 */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

/* ==================== 頁腳 ==================== */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-section p {
    color: var(--text-dark);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.footer-section ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--text-light);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--text-dark);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.85rem;
    font-style: italic;
}

/* ==================== WhatsApp 浮動按鈕 ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ==================== 返回頂部按鈕 ==================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

/* ==================== 動畫 ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ==================== 響應式設計 ==================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle-en {
        font-size: 1.5rem;
    }
    
    .intro-content {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-features {
        justify-content: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--bg-white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-en {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 12px;
    }
    
    .features-grid,
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle-en {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

.contact-form .form-row {
    display: flex;
    gap: 20px; /* 左右欄位間距 */
    margin-bottom: 15px;
}

.contact-form .form-group {
    flex: 1; /* 平分左右欄位 */
    display: flex;
    flex-direction: column;
}

/* 讓按鈕佔滿整行 */
.contact-form .form-row button {
    flex: 1;
}

/* 響應式：小螢幕改成上下排列 */
@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
    }
}


    .contact-form .form-row {
    display: flex;
    gap: 20px; /* 左右欄位間距 */
    margin-bottom: 15px;
}

.contact-form .form-group {
    flex: 1; /* 平分左右欄位 */
    display: flex;
    flex-direction: column;
}

/* 讓按鈕佔滿整行 */
.contact-form .form-row button {
    flex: 1;
}

/* 響應式：小螢幕改成上下排列 */
@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
    }
}

.notice p{
    font-size: 12px;
}

.nav {
     text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav:hover{
    color: var(--primary-color);
}

#brochure .container{
    padding: 0px 30px !important;
}

.menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #555;
  min-width: 150px;
}


/* Dropdown items */
.menu li ul li {
  padding: 10px;
  color: white;
}

/* Hover to show dropdown */
.menu li:hover ul {
  display: block;
}

/* Hover effect */
.menu li ul li:hover {
  background: #777;
}