/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    line-height: 1.6;
    color: #777777;
    background-color: #fcfcfc;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
    color: #111111;
    font-weight: 400;
}

h1 { font-size: 42px; }
h2 { font-size: 42px; }
h3 { font-size: 40px; }
h4 { font-size: 28px; }
h5 { font-size: 22px; }
h6 { font-size: 20px; }

a {
    color: #8B0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1c2730;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Header Styles */
#header {
    background-color: #ffffff;
    position: relative;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
    max-width: 100%;
    padding: 0 40px;
}

.logo {
    flex: 0 0 auto;
}

.logo h1 {
    margin: 0;
    font-size: 0;
}

.logo h1 img {
    height: 26px;
    width: auto;
}

/* Navigation */
.main-nav {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 5px 0;
    transition: 0.3s;
}

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

.nav-menu > li {
    position: relative;
    margin: 0 20px;
}

.nav-menu > li > a {
    color: #000000;
    font-size: 16px;
    padding: 35px 0;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: #8B0000;
}

/* Submenu */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    list-style: none;
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    padding: 0;
}

.submenu li a {
    padding: 10px 20px;
    display: block;
    font-size: 12px;
    color: #000;
}

.submenu li a:hover {
    background-color: #f5f5f5;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #2c3e50 0%, #3a4f63 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content .container {
    position: relative;
    height: 100%;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(102, 0, 0, 0.82);
    padding: 40px 50px;
    width: 35%;
    min-width: 400px;
}

.hero-title {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: left;
}

.hero-subtitle {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    text-align: left;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
    background: transparent;
}

.hero-button {
    text-align: left;
}

.btn-outline {
    color: #000;
    border-color: #e1e1e1;
    background: #ffffff;
    font-size: 11px;
    padding: 10px 35px;
    font-family: 'Libre Baskerville', serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.btn-outline:hover {
    background: #f5f5f5;
    color: #000;
    border-color: #d0d0d0;
}

.btn-outline-dark {
    color: #000;
    border-color: #e1e1e1;
    background: #fff;
}

.btn-outline-dark:hover {
    background: #8B0000;
    border-color: #8B0000;
    color: #fff;
}

/* Features Section */
.features {
    background: #ffffff;
    padding: 80px 0 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: left;
}

.feature-icon {
    font-size: 48px;
    color: #8B0000;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 17px;
    margin-bottom: 15px;
}

/* Quote Section */
.quote-section {
    position: relative;
    padding: 130px 0;
    background-image: url('images/quote-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    overflow: hidden;
}

.quote-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.quote-content p {
    font-size: 24px;
    font-style: italic;
    color: #ffffff;
    font-family: 'Libre Baskerville', serif;
    max-width: 800px;
    margin: 0 auto;
}

/* Why Us Section */
.why-us {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #111;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 80px;
}

.why-item {
    text-align: left;
}

.why-item i {
    font-size: 24px;
    color: #8B0000;
    margin-bottom: 15px;
}

.why-item h4 {
    font-size: 17px;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 14px;
    line-height: 1.6;
}

/* Investments Section */
.investments {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.investment-item {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.investment-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 20px;
}

.investment-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.investment-item:hover .investment-logo img {
    transform: scale(1.05);
}

.logo-placeholder {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Source Sans Pro', sans-serif;
}

.investment-item:hover .logo-placeholder {
    color: #8B0000;
}

.investment-item h5 {
    font-size: 16px;
    margin-top: 10px;
}

.view-more {
    text-align: center;
}

/* FusionPoint Page */
.fusionpoint-content {
    background: #ffffff;
    padding: 120px 0 80px;
}

.fusionpoint-content .content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 4px;
}

.fusionpoint-content h2 {
    font-size: 42px;
    color: #111111;
    margin-bottom: 30px;
    font-weight: 400;
}

.fusionpoint-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #777777;
    margin-bottom: 20px;
}

.fusionpoint-content p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #111010;
    color: #ffffff;
    padding: 60px 0 40px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 339px;
    height: auto;
}

.footer-info {
    font-size: 11px;
    color: #636363;
}

.footer-info a {
    color: #241f20;
    text-decoration: underline;
}

.footer-info a:hover {
    color: #8B0000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu > li {
        width: 100%;
        margin: 10px 0;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
    }

    .hero-text {
        position: relative;
        top: auto;
        left: 20px;
        right: 20px;
        transform: none;
        max-width: 90%;
        min-width: auto;
        padding: 30px;
        margin-top: 50px;
    }

    .hero-title {
        font-size: 28px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .investment-grid {
        grid-template-columns: 1fr;
    }
}