/* GLOBAL STYLES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #000;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #000;
    color: white;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: white;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    border-radius: 5px;
}

.hero {
    height: 100vh;
    background: url('images/bbb.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 0 1rem;

}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 1;
    animation: fadeIn 2s ease-in-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    background-color: black;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* SPECIAL INVESTMENT */
.special-investment {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.special-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.special-image img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.5s;
}

.special-image img:hover {
    transform: scale(1.05);
}

.special-content {
    flex: 1;
}

.special-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

/* LIVE STOCKS */
.live-stocks {
    padding: 5rem 0;
}

.stock-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.stock-card {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    width: 200px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* OTHER INVESTMENTS */
.other-investments {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.investment-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.investment-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.investment-card:hover {
    transform: translateY(-10px);
}

/* ABOUT US */
.about-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, black 0%, black 100%);
    color: #fff;
    text-align: center;
}

.about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* TEAM */
.our-team {
    padding: 5rem 0;
}

.team-carousel {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    scroll-behavior: smooth;
}

.team-member {
    flex: 0 0 200px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* AWARDS */
.awards {
    padding: 5rem 0;
    background-color: #f5f5f5;
    text-align: center;
}

.awards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.awards-grid img {
    max-width: 150px;
}

/* FOOTER */
footer {
    background-color: #000;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    color: white;
}

.social-icons img {
    width: 25px;
    margin: 0 0.5rem;
}

/* MEDIA QUERIES */
@media(max-width: 768px){
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        padding: 1rem;
    }
    nav ul.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }

    .special-container {
        flex-direction: column;
    }

    .investment-cards {
        flex-direction: column;
        align-items: center;
    }

    .team-carousel {
        gap: 1rem;
    }
}

/* ANIMATIONS */
@keyframes fadeIn {
    0% {opacity: 0; transform: translateY(20px);}
    100% {opacity: 1; transform: translateY(0);}
}


