
/* Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #020202;
    color: #f2f2f2;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.8;
}

/* Header Nav */

header {
    height: 70px;
    width: 100%;
}

nav {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 8px; 
    margin-right: 40px;
}

.logo-group img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.brand {
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Welcome Section */

#welcome {

    min-height: 100vh;
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    padding: 20px;
    background:
        radial-gradient(
            circle,
            rgba(170, 0, 0, 0.28) 0%,
            rgba(120, 0, 0, 0.14) 30%,
            rgba(60, 0, 0, 0.05) 45%,
            transparent 45%
        );
}

#welcome > p:first-child {

    color: #8a8a8a;
    font-size: 0.9rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 10px;
    padding-top: 40px;
}

#welcome h1 {

    font-size: 6rem;
    letter-spacing: 4px;
    margin-bottom: 0px;
    color: white;
    text-shadow:
        0 0 10px rgba(180,0,0,.25),
        0 0 30px rgba(120,0,0,.15);
}

#welcome > p:nth-child(3) {

    max-width: 800px;
    color: #b8b8b8;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

#welcome > p:nth-child(4) {

    max-width: 800px;
    color: #b8b8b8;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.main-image {
    width: min(800px, 90%);
    aspect-ratio: 16 / 9;
    object-fit: cover;

    border-radius: 22px;
    margin-top: 50px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow:
        0 25px 70px rgba(0,0,0,.55),
        0 0 40px rgba(180,0,0,.18);

    transition: transform .35s ease;
}

.main-image:hover {
    transform: scale(1.05);
}


/* Newsletter Section */

#newsletter {

    text-align: center;
    padding: 100px 20px;
    padding-top: 200px;

}

#newsletter h2 {

    margin-bottom: 10px;
    font-size: 2rem;
}

#newsletter p {

    color: #999;
    margin-bottom: 30px;
}

/* form Section */

#sd-newsletter {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

#sd-newsletter label {

    display: none;
}

#sd-newsletter input {

    width: 260px;
    padding: 12px 18px;
    background: #111;
    color: white;
    border: 1px solid #333;
    border-radius: 25px;
    outline: none;
    transition: .3s;
}

#sd-newsletter input:focus {

    border-color: #8d0000;
    box-shadow: 0 0 12px rgba(140,0,0,.2);
}

#sd-newsletter button {

    padding: 12px 22px;
    background: #700000;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: .3s;
}

#sd-newsletter button:hover {

    background: #950000;
    transform: scale(1.02);
}

#thank-you {

    display: none;

}
