@font-face {
    font-family: "Saans";
    src: url(../font/SaansTRIAL-Medium.ttf);
}

@font-face {
    font-family: "Acaslon";
    src: url(../font/ACaslonPro-Regular.otf);
}


@font-face {
    font-family: "FuturaCondensed";
    src: url(../font/FuturaLT-CondensedBold.ttf);
}


@font-face {
    font-family: "Montreal-Regular";
    src: url(../font/NeueMontreal-Regular.otf);
}


@font-face {
    font-family: "FuturaLT";
    src: url(../font/FuturaLT.ttf);
}



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

body {
    font-family: 'Poppins', 'Roboto', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    /* Adjust text color to your theme */
    background-color: #F4F4F4;
    /* Light neutral background */
    overflow-x: hidden;
    /* prevents horizontal scrollbars */
}



html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* NAVBAR */
.nav {
    position: sticky;
    top: 0;

    padding: clamp(0.5rem, 1vw + 0.2rem, 1rem) clamp(1rem, 2vw + 0.5rem, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    z-index: 100;
    margin-top: 20px;
    border: solid 0.4px black;
    width: 90%;
    margin-inline: auto;
}

.nav-inner {
    max-width: 1600px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 0.5rem);
    color: var(--text);
    text-decoration: none;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
}

.logo-img {
    width: clamp(40px, 4vw, 48px);
    height: clamp(40px, 4vw, 48px);
}

/* Menu */
.menu {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1vw, 1.5rem);
    list-style: none;
}

.menu a {
    text-decoration: none;
    padding: .5rem .75rem;
    font-size: clamp(0.9rem, 0.9vw, 1.05rem);
    font-weight: 500;
    color: var(--text);
    transition: .2s;
}

.menu a:hover,
.active {
    text-shadow: 0 0 10px var(--text);
}

.menu li a {
    position: relative;
    display: block;

    &::after {
        position: absolute;
        content: "";
        top: 100%;
        left: 0;
        width: 100%;
        height: 3px;
        background: #404549;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.5s;
    }

    &:hover {
        color: #312B22;
    }

    &:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }
}




/* Search */
.search {
    position: relative;
}

.search input {
    width: 100%;
    padding: .6rem 2.5rem .6rem .75rem;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    outline: none;
}

.search input::placeholder {
    color: #b6c0c9;
}

.search button {
    position: absolute;
    right: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.search svg {
    width: clamp(18px, 2vw, 24px);
    height: clamp(18px, 2vw, 24px);
    opacity: 0.8;
}

/* Button */
.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text);
    border: none;
    outline: none;
    /* border-radius: 12px; */
    transition: transform .15s, box-shadow .2s;
    border: solid 0.5px;

}

.nav-btn .btn,
.hero-btns .btn {
    display: flex;
    align-items: center;
    padding: .6rem 1rem;
    font-size: clamp(0.9rem, 0.9vw, 1rem);
    font-weight: 700;
    color: #111;
    cursor: pointer;
    text-decoration: none;
}

.nav-btn:hover,
.hero-btns .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px -8px rgba(255, 255, 255, .55);
}

/* Hamburger */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    width: clamp(40px, 6vw, 45px);
    height: clamp(40px, 6vw, 45px);
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: #312B22;
    position: relative;
    transition: .25s;
    content: "";
    transition: transform .25s ease, top .25s ease, background .25s ease;
    transform-origin: center;
}

.hamburger span::before {
    position: absolute;
    top: -6px;
}

.hamburger span::after {
    position: absolute;
    top: 6px;
}

/* HERO SECTION */
.hero {
    min-height: calc(100vh - clamp(60px, 5vw, 90px));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-inner {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(1.75rem, 5vw, 3.2rem);
    margin-bottom: clamp(12px, 2vw, 24px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: clamp(0.875rem, 2.5vw, 1.125rem);
    margin-bottom: 1.5rem;
    color: #d1d5db;
}

.hero-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.hero .btn.primary,
.hero .btn.secondary {
    padding: clamp(8px, 1.5vw, 10px) clamp(20px, 2vw, 26px);
    border-radius: 12px;
    text-decoration: none;
}

.hero .btn.primary {
    background: var(--text);
    color: #0a0f0a;
}

.hero .btn.secondary {
    background: transparent;
    border: 2px solid var(--text);
    color: var(--text);
}


/* MAIN-CONTAINER */


.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    height: 90vh;
    padding: 0 1rem;
    /* small side padding for mobile */
    border-bottom: 1px solid #ccc;
    /* thin, clean line */
}


/* TITLE-INTRO */

.title-intro {
    height: auto;
    /* let it grow naturally */
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    /* spacing between elements */
}

.title-intro {
    -webkit-animation: text-focus-in 1.2s cubic-bezier(0.550, 0.055, 0.675, 0.190) both;
    animation: text-focus-in 1.2s cubic-bezier(0.550, 0.055, 0.675, 0.190) both;
}





@-webkit-keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}






/* H1 */

h1 {
    font-family: "FuturaCondensed";
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    /* scales between 2.5rem–5.5rem */
    margin: 0;
    color: #312B22;
}



/* H2 */

h2 {
    font-family: "Acaslon";
    font-size: 1.75rem;
    letter-spacing: 2.8px;
    color: #312B22;
}



/* PARAGRAPH-TITLE */


.paragraph-title {
    font-family: "Acaslon";
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.175rem;
    max-width: 40rem;
    margin: 0 auto;
    line-height: 1.6;
}


/* BUTTON */

.button {
    padding: 1.5rem 2rem;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.37);
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 1px 1px 0 rgba(255, 255, 255, 0.698) inset, 0 1px 0 0 rgba(0, 0, 0, 0.075);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #312B22;
    font-weight: bold;
    line-height: 20px;
    font-size: 1.5rem;
}

.button:hover {
    background-color: #F6F6F6;
    outline: medium none;
}

.button:focus {
    outline: medium none;
}

.button:active,
.button.active {
    background-color: #DDDDDD;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.075) inset;
    outline: medium none;
    transition: none 0s ease 0s;
}



/* H3 */
h3 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.2rem);
    text-align: center;
    margin-bottom: 30px;
    color: #312B22;
}


/* ABOUT ME-SECTION */

.about-me {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-bottom: 1px solid #ccc;
    /* thin, clean line */
}

/* ---------------------------
   DEFAULT (hidden) STATE
---------------------------- */
.project-section .project-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

/* ---------------------------
   VISIBLE STATE
---------------------------- */
.project-section .project-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ---------------------------
   STAGGERED DELAYS
---------------------------- */
.project-section .project-card:nth-child(1) {
    transition-delay: 0s;
}

.project-section .project-card:nth-child(2) {
    transition-delay: 0.1s;
}

.project-section .project-card:nth-child(3) {
    transition-delay: 0.2s;
}

.project-section .project-card:nth-child(4) {
    transition-delay: 0.3s;
}

.project-section .project-card:nth-child(5) {
    transition-delay: 0.4s;
}

.project-section .project-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* ---------------------------
   OTHER SECTIONS (unchanged)
---------------------------- */
.about-me>*,
.about-me p span,
.section-header>* {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.7s ease-out;
}

.about-me>*.visible,
.about-me p span.visible,
.section-header>*.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ABOUT ME PARAGRAPH */

.about-me-paragraph {
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.125rem);
    /* responsive font size */
    text-align: left;
    /* center text */
    max-width: 760px;
    /* optional: limits line length for readability */
    margin: 0 auto;
    /* center the paragraph container */
    line-height: 1.7;
    /* makes reading more enjoyable */
    padding: 0 1rem;
    /* adds some spacing on very small screens */

    font-family: "Montreal-Regular";
}


.about-me-paragraph::first-letter {
    font-size: 2.2em;
    font-weight: bold;
    float: left;
    margin-right: 0.1em;
    line-height: 1;
    color: #333;
    /* optional */
}


/* SPAN HTML CSS  */
.HTMLCSS {
    font-weight: bold;
    background-image: url(../images/green\ marker.png);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}


/* SPAN ADOBE  */

.ADOBE {
    font-weight: bold;
    background-image: url(../images/yellow\ marker.png);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}

/* SPAN FIGMA */

.FIGMA {
    font-weight: bold;
    background-image: url(../images/pink\ marker.png);
    background-position: center;
    background-repeat: repeat;
}




/* RESPONSIVE GALLERY */



/* === GALLERY PROJECTS === */
.project-section {
    width: 100%;
    padding: 6rem 5%;

    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header {
    text-align: center;
    max-width: 100%;
    margin-top: 3.5rem;
}

.section-header h2 {
    font-family: "Geist", sans-serif;
    font-size: 2.75rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header p {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.125rem;
    color: #222;
    line-height: 1.6;
}

/* === PROJECT GRID === */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    /* bigger cards */
    gap: 2.5rem;
    /* more breathing room */
    width: 100%;
    max-width: 1400px;
}

/* === PROJECT CARD === */
.project-card {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    aspect-ratio: 16 / 10;
    /* slightly taller cards */
    display: block;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.project-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

/* === HOVER OVERLAY === */
.project-overlay {
    position: absolute;
    inset: 0;

    background-color: hsla(0, 0%, 100%, 0.568);
    ;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
    text-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(15px);
    backdrop-filter: blur(12px);
}

.project-overlay h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.7);
    color: #111;

    font-family: "FuturaLT";

}

.project-overlay p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 85%;
    text-shadow: 2px 2px 5px rgba(122, 122, 122, 0.7);
    color: #111;

    font-family: "FuturaLT";
}

/* TOOLS SPAN */

.tools {
    font-weight: bold;
}



/* Hover effect */
.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}




/* VIDEO-SECTION */

#video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    /* spacing between each video block */
    padding: 50px 0;
    width: 100%;

}

.video-card {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;

}

.video-card:last-child {
    margin-bottom: 0;
}

.project-video {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    /* drop shadow */
    border: solid 3.5px;
}



.video-card h1 {
    margin-top: 15px;
    font-family: "Geist", sans-serif;
    font-size: 1.5rem;
    color: black;
}

.video-card p {
    font-family: "Geist", sans-serif;
    font-size: 1rem;
    color: #333;
    margin-top: 10px;
    line-height: 1.5;
    font-weight: 700;
}


.video-card h1 {
    margin-bottom: 10px;
    /* space below the title */
}

.video-card p {
    margin-bottom: 15px;
    /* space below the paragraph */
}

.video-card a {
    margin-top: 5px;
    /* optional extra space above the button */
}

/* Minimalist button */
.video-button {
    margin-top: 15px;
    text-decoration: none;
    padding: 10px 25px;
    font-family: "FuturaLT";
    font-size: 1rem;
    color: black;
    border: 1px solid black;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
}

.video-button:hover {
    background-color: black;
    color: white;
    border-color: black;
}





/* CONTACT */


/* === FOOTER BASE STYLES === */
.contact-me {
    background-color: #111;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ccc;
    padding: 2rem 1rem;
    text-align: center;
}

/* Divider line */
.line {
    width: 60%;
    max-width: 600px;
    height: 1px;
    background-color: #ccc;
    margin: 2.5rem 0;
}

/* === SOCIAL LINKS === */
.contact-me {
    background-color: #111;
    min-height: 500px;
    /* increased height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* centers vertically */
    color: #ccc;
    padding: 3rem 1rem;
    /* a bit more breathing room */
    text-align: center;
}

/* Divider line */
.line {
    width: 60%;
    max-width: 600px;
    height: 1px;
    background-color: #ccc;
    margin: 3rem 0;
}

/* === SOCIAL LINKS === */
.list-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    max-width: 800px;

    padding: 1.5rem 0;
    font-family: "FuturaLT", sans-serif;
    gap: 3rem;
    flex-wrap: wrap;
}

.list-socials a {
    text-decoration: none;
    color: #ccc;
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 2rem);
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.list-socials a:hover {
    color: #fff;
}

.contact-me h3 {
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2.5rem);
    color: #ffffff;

    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* === COPYRIGHT TEXT === */
.contact-me p {
    font-size: clamp(0.9rem, 1vw + 0.2rem, 1.2rem);
    margin-top: 1.5rem;
}

/* === REMOVE BULLETS === */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* SPACER STYLE */

.spacer {
    height: clamp(80px, 10vw, 150px);
    /* 
    - min height: 80px on small screens
    - scales with viewport width (10vw)
    - max height: 150px on large screens
  */
}

/* RESPONSIVE CONTACT ME SECTION  */

/* === RESPONSIVE BREAKPOINTS === */

/* Tablets (landscape & portrait) */
@media (max-width: 992px) {
    .contact-me {
        min-height: 450px;
        padding: 2.5rem 1rem;
    }

    .list-socials {
        width: 85%;
        gap: 2rem;
    }

    .line {
        width: 70%;
    }
}

/* Large Phones */
@media (max-width: 768px) {
    .contact-me {
        min-height: 400px;
        padding: 2.5rem 1rem;
    }

    .list-socials {
        flex-direction: column;
        width: 80%;
        border-bottom: none;
        gap: 1rem;
    }

    .line {
        width: 80%;
    }

    .list-socials a {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .contact-me {
        min-height: 380px;
        padding: 2rem 1rem;
    }

    .list-socials {
        width: 100%;
        gap: 0.75rem;
    }

    .line {
        width: 90%;
        margin: 2rem 0;
    }

    .list-socials a {
        font-size: 1.1rem;
    }

    .contact-me p {
        font-size: 0.9rem;
    }
}


/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .video-card {
        width: 70%;
    }
}

@media screen and (max-width: 768px) {
    .video-card {
        width: 90%;
    }

    .video-card h1 {
        font-size: 1.3rem;
    }

    .video-card p {
        font-size: 0.95rem;
    }

    .video-button {
        font-size: 0.95rem;
        padding: 8px 20px;
    }
}

@media screen and (max-width: 480px) {
    .video-card h1 {
        font-size: 1.1rem;
    }

    .video-card p {
        font-size: 0.9rem;
    }

    .video-button {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
}





/* ------------------------------- */
/* 💻 Medium screens (≤1024px) */
/* ------------------------------- */
@media screen and (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 35px;
        max-width: 900px;
    }
}

/* ------------------------------- */
/* 📱 Tablets & small laptops (≤768px) */
/* ------------------------------- */
@media screen and (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
        width: 95%;
        max-width: 700px;
    }
}

/* ------------------------------- */
/* 📱 Mobile portrait (≤480px) */
/* ------------------------------- */
@media screen and (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 90%;
        max-width: 400px;
    }
}

/* Responsive NAV */
@media(max-width: 900px) {
    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        background: rgba(8, 10, 14, 0.9);
        backdrop-filter: blur(12px);
        max-height: 0;
        padding: 0;
        overflow: hidden;
        transition: max-height .4s ease, opacity .4s ease, padding .4s ease;
        opacity: 0;
        pointer-events: none;
    }

    .menu li {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90%;
        border-bottom: 1px solid #b6c0c9;
    }

    .menu li a {
        padding: 10px 0;
        color: white;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .menu .search,
    .menu .nav-btn {
        width: 90%;
        margin-top: 1rem;
    }

    .menu-toggle:checked~.menu {
        max-height: 100vh;
        height: 100vh;
        padding: 1.5rem 0;
        opacity: 1;
        pointer-events: auto;
    }

    .hamburger {
        display: flex;
    }

    .menu-toggle:checked~.hamburger span {
        background: transparent;
    }

    .menu-toggle:checked~.hamburger span::before {
        top: 0;
        transform: rotate(45deg);
    }

    .menu-toggle:checked~.hamburger span::after {
        top: 0;
        transform: rotate(-45deg);
    }
}



/* RESPONSIVE CONTAINER HERO */


/* 📱 Small devices (mobile) */


@media (max-width: 480px) {
    .container {
        height: 100vh;
        /* make it fill the full viewport height */
        padding: 2rem 1.5rem;
        /* add breathing space */
        display: flex;
        align-items: center;
        justify-content: center;
        /* centers content vertically */
    }

    .title-intro {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
    }

    h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    h2 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
    }

    .paragraph-title {
        font-size: clamp(1rem, 4vw, 1.25rem);
        line-height: 1.6;
        max-width: 90%;
    }

    .button {
        padding: 1rem 2rem;
        font-size: 1.25rem;
    }
}

/* 💻 Medium devices (tablet) */



/* 💻 Tablet (portrait & small landscape) */
@media (min-width: 481px) and (max-width: 1024px) {
    .container {
        height: 95vh;
        /* nearly full height, gives a balanced hero */
        padding: 3rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .title-intro {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 2rem;
        max-width: 90%;
    }

    h1 {
        font-size: clamp(3rem, 6vw, 4.5rem);
        margin: 0;
    }

    h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        letter-spacing: 0.15rem;
        margin: 0;
    }

    .paragraph-title {
        font-size: clamp(1.125rem, 2vw, 1.5rem);
        line-height: 1.6;
        max-width: 42rem;
    }

    .button {
        padding: 1.25rem 2.5rem;
        font-size: clamp(1.125rem, 2vw, 1.5rem);
    }
}