/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background-color: #050816;
    color: white;
}


/* GLOBAL HEADINGS */

h1, h2 {
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* HERO SECTION */

.hero {
    height: 100vh;
    background: linear-gradient( rgba(0,0,0,0.55), rgba(0,0,0,0.75) ), url("images/hero.jpg");
    background-size: cover;
    background-position: center;
}


/* NAVIGATION */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
}


.logo {
    display: flex;
    align-items: center;
}


    .logo img {
        height: 300px;
        margin-right: 15px;
    }


nav ul {
    list-style: none;
    display: flex;
}


nav li {
    margin-left: 30px;
}


nav a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.08em;
    transition: 0.3s;
}


    nav a:hover {
        color: #0088CC;
    }


/* HERO CONTENT */

.hero-content {
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}


    .hero-content h2 {
        font-size: 4rem;
    }


    .hero-content p {
        max-width: 700px;
        margin: 25px 0;
        font-size: 1.3rem;
        line-height: 1.7;
        font-weight: 300;
    }


/* BUTTONS */

.button {
    background-color: #0088CC;
    color: black;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 30px;
    transition: 0.3s;
}


    .button:hover {
        background-color: white;
    }


/* SECTIONS */

section {
    padding: 90px 8%;
}


    section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
    }


.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}


.card {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}


    .card:hover {
        transform: translateY(-10px);
    }


    .card h3 {
        margin-bottom: 15px;
        color: #0088CC;
        font-weight: 500;
    }


    .card p {
        line-height: 1.7;
        font-weight: 300;
    }


/* VIDEO GALLERY */

.video-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}


    .video-grid video {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }


/* CONTACT */

#contact {
    text-align: center;
}


    #contact p {
        margin: 25px;
        font-size: 1.2rem;
        font-weight: 300;
    }


/* FOOTER */

footer {
    padding: 25px;
    text-align: center;
    background-color: black;
    color: #777;
    font-weight: 300;
}


/* MOBILE */

@media (max-width: 768px) {

    nav {
        flex-direction: column;
    }


        nav ul {
            margin-top: 15px;
        }


        nav li {
            margin: 0 12px;
        }


    .logo img {
        height: 180px;
    }


    .hero-content h2 {
        font-size: 2.5rem;
    }


    .hero-content p {
        font-size: 1.1rem;
    }
}
