body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #fff;
}

h1,
h2,
h4 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
}

.hero p {
    font-size: 1.4rem;
    opacity: 0.8;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Fullscreen */
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 8vw;
    /* Per dare spazio a sinistra */
    text-align: left;
    overflow: hidden;
}

/* Video di sfondo */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Overlay scuro sopra il video */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Scuro ma non eccessivo */
    z-index: -1;
}

/* Contenuto sopra il video */
.hero-content {
    position: relative;
    color: white;
    font-family: 'Poppins', sans-serif;
    z-index: 1;
}

/* Titolo con stile forte */
.hero-title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -2px;
}

/* Sottotitolo minimalista */
.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.8;
    margin-top: 15px;
}

.hero-section {
    justify-content: center;
    text-align: center;
    padding: 0;
}

.hero-title {
    font-size: 3rem;
    letter-spacing: 0px;
}

.hero-subtitle {
    font-size: 1.2rem;
}

.btn-primary {
    background-color: #00a6ff;
    border: none;
    padding: 12px 25px;
    font-size: 1.3rem;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #00a6ff;
}

.portfolio img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

.portfolio .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: 0.3s;
}

.portfolio:hover .overlay {
    opacity: 1;
}

.portfolio h4 {
    font-size: 1.5rem;
    color: #ffffff;
}

/* .about {
    padding: 300px 0;
}

.footer {
    text-align: center;
    padding: 40px 0;
    background: #1a1a1a;
} */

/* ABOUT SECTION */
.about-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #ddd;
    margin-top: 15px;
    font-style: italic;
}

.section-divider {
    width: 60%;
    height: 0.5px;
    background: rgba(255, 255, 255, 0.2);
    margin: 100px auto;
    border-radius: 2px;
}


/* FOOTER */
.footer {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px 20px;
    text-align: center;
}

.footer-content h2 {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s ease-in-out;
}

.social-links a:hover {
    color: #f39c12;
}

.social-links span {
    color: #666;
    margin: 0 10px;
}


.glass-nav {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 5px 10px;
    margin: 10px auto;
    width: 35%;
    max-width: 900px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    letter-spacing: 1px;
}