:root {
    --gold: #d4af37;
    --navy: #0a192f;
    --white: #ffffff;
    --grey: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(10, 25, 47, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo Container */
.logo-container {
    display: flex;           /* Arrange logo and text in a row */
    align-items: center;     /* Vertically center the items */
    gap: 20px;               /* Space between logo and text */
    padding: 10px;           /* Optional: some spacing around */
}

/* Logo Image */
.nav-logo {
    height: 120px;           /* Bigger logo */
    width: 120px;            /* Ensure perfect circle */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Subtle shadow */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.nav-logo:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Brand Name Text */
.brand-name {
    font-size: 2rem;         /* Larger text to match bigger logo */
    font-weight: bold;       /* Bold for emphasis */
    color: white;             /* Dark color for contrast */
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 28px;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.8rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--gold);
}

.btn-cta {
    background: var(--gold);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--navy) !important;
    font-weight: bold;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 25, 47, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
    border-radius: 5px;
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 13px 30px;
    text-decoration: none;
    border-radius: 5px;
}

/* Marquee */
.marquee-section {
    background: #050c18;
    padding: 40px 0;
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: scroll 20s linear infinite;
}

.marquee-content span {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 80px 8%;
    background: var(--white);
    color: var(--navy);
}

.feature-card {
    padding: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

footer {
    text-align: center;
    padding: 40px;
    background: #050c18;
    font-size: 0.8rem;
    color: #666;
}

/* --- MOBILE RESPONSIVENESS --- */

/* For Tablets and smaller (992px and down) */
@media (max-width: 990px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    nav {
        padding: 15px 5%;
    }
}

/* For Smartphones (768px and down) */
@media (max-width: 760px) {
    nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    nav ul {
        margin-left: 0;
        padding-bottom: 10px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero {
        height: 60vh; /* Shorter hero on mobile */
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-gold, .btn-outline {
        width: 80%;
        margin-right: 0;
    }

    .features {
        padding: 40px 5%;
    }

    .marquee-content span {
        font-size: 1.1rem;
        gap: 30px;
    }
}

/* For Small Phones (480px and down) */
@media (max-width: 470px) {
    .brand-name {
        font-size: 1.2rem;
    }
    
    .nav-logo {
        height: 40px;
    }

    .feature-card {
        padding: 20px;
    }
}