body {
    background-color: white;
}

img,video{
    max-width: 100%;
    height: auto; 
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
}

main{
    background-color: rgb(0, 0, 0);
    position: relative; 
    height:100%;
    color: black;
}

/* ---------------- NAVBAR ---------------- */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: transparent;
}


.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.brand {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-center a {
    position: relative;
    padding: 8px 14px;              /* space for the bubble */
    border-radius: 20px;            /* bubble shape */
    text-decoration: none;
    font-size: 18px;
    color: #393939;
    font-weight: 400;
    transition: all 0.25s ease-in-out;
}

/* Bubble effect on hover */
.nav-center a:hover {
    background: rgba(0, 0, 0, 0.08); /* soft gray bubble */
    color: white;
}



.nav-right .cta {
    text-decoration: none;
    background: #000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.25s ease;
}

.cta:hover {
    opacity: 0.85;
}


/* ---------------- HERO SECTION ---------------- */

.hero {
    width: 100%;
    height: 800px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 120px;
    box-sizing: border-box;

    /* Background with fade-to-white */
    background-image: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, black 100%),
        url('../img/sunset.jpg');
    background-size:cover;
    background-position: center;
}

.hero-content {
    text-align: center;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 20px;
    color: white;
    margin-bottom: 30px;
}




#homepage-content {
    height:100%;
    background-image: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, black 100%),
        url('../img/sunset.jpg');
    background-size:cover;
    background-position: center;
}
.text {
    margin-left:40px;
    width: 80%;              /* makes the text block stretch across the screen */
    padding: 40px 60px;       /* optional padding for left/right breathing room */
    line-height: 1.8;         /* controls spacing between lines */
    font-size: 20px;          /* adjust text size */
    color: white; 
}

.small-image {
    width: 200px;     /* or any size you want */
    height: auto;     /* keeps proportions */
}

figure{
    display: inline-block;
}
.col-text{
    width: 30%;
    display: inline-block;
    margin-left: 40px;
    color: white;
}

.bg-vid{
    position: absolute; 
    top: 0;
    left: 0; 
    z-index: 0;
}
.video-tag {
    position: relative; 
    z-index:2;
    font-size: 10em;  
    color: white; 
}