/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;300;400;500;600;700&display=swap');

/* All Round Gothic Font Family */
@font-face {
    font-family: 'All Round Gothic';
    src: url('../font/allroundgothic-book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('../font/allroundgothic-demi.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('../font/allroundgothic-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('../font/allroundgothic-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('../font/allroundgothic-text.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('../font/allroundgothic-xlig.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

/* Italic variants */
@font-face {
    font-family: 'All Round Gothic';
    src: url('../font/allroundgothic-bookoblique.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'All Round Gothic';
    src: url('../font/allroundgothic-demioblique.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}


/* ===== VARIABLES ===== */
:root {
    /* Colori principali */
    --color-text: #ffffff;
    --color-white: #ffffff;
    --color-white-200: hsl(206, 5%, 90%);
    --color-black-300: hsl(214, 21%, 6%);
    --color-black-500: hsl(216, 22%, 4%);
    --color-blue-600: hsl(221, 83%, 53%);

    /* Colori footer */
    --color-footer-bg: #1c2026;
    --color-footer-text: #8b8e92;
    --color-footer-bottom: #171b21;
    --color-accent: #ff3a57;
    --color-border: #333;

    /* Ombre */
    --shadow-medium: 0 0.25rem 0.375rem -0.0625rem rgba(0, 0, 0, 0.1),
        0 0.125rem 0.25rem -0.0625rem rgba(0, 0, 0, 0.06);
}

/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.5;
    height: -webkit-fill-available;
    color: var(--color-text);
    background-color: var(--color-black-500);
}

main {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'All Round Gothic';
    font-weight: 100;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

section {
    margin: 0 auto;
    padding: 5rem 0;
}

/* ===== COMMON COMPONENTS ===== */

.font-logo {
    font-family: 'All Round Gothic';
}

.container {
    max-width: 75rem;
    height: auto;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.centered {
    text-align: center;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.heading-xl {
    font-family: inherit;
    font-size: clamp(2.648rem, 6vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: -0.0625rem;
}

.heading-lg {
    font-family: inherit;
    font-size: clamp(2.179rem, 5vw, 3.176rem);
    line-height: 1.15;
    letter-spacing: -0.0625rem;
}

.heading-md {
    font-family: inherit;
    font-size: clamp(1.794rem, 4vw, 2.379rem);
    line-height: 1.25;
    letter-spacing: -0.0625rem;
}

.heading-sm {
    font-family: inherit;
    font-size: clamp(1.476rem, 3vw, 1.782rem);
    line-height: 1.5;
}

.heading-xs {
    font-family: inherit;
    font-size: clamp(1.215rem, 2vw, 1.335rem);
    line-height: 1.5;
}

.paragraph {
    font-family: inherit;
    font-size: clamp(1rem, 2vw, 1.125rem);
    text-wrap: balance;
    color: var(--color-white-200);
    line-height: 2.25rem;
    margin-bottom: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    user-select: none;
    outline: none;
    border: none;
    border-radius: 0.25rem;
    text-transform: unset;
    transition: all 0.3s ease-in-out;
}

.btn-darken {
    padding: 0.75rem 2rem;
    color: var(--color-white);
    background-color: var(--color-black-300);
    box-shadow: var(--shadow-medium);
}

.btn-neutral {
    padding: 0.75rem 2rem;
    color: var(--color-black-500);
    background-color: var(--color-white);
    box-shadow: var(--shadow-medium);
}

.btn-light {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.1);
}

/* ===== HEADER SECTION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: auto;
    margin: 0 auto;
    transition: all 0.35s ease;
}

header.on-scroll {
    background: var(--color-black-300);
    box-shadow: var(--shadow-medium);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 4.25rem;
    margin: 0 auto;
}

.brand {
    font-family: 'All Round Gothic';
    font-size: 1.6rem;
    font-weight: 100;
    line-height: 1.5;
    letter-spacing: -0.0625rem;
    color: var(--color-white);
}

.menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 4rem 0 3rem;
    overflow: hidden;
    background-color: var(--color-black-300);
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease-in-out;
}

.menu.is-active {
    top: 0;
    width: 100%;
    height: auto;
}

.menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.menu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-white);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.menu-block {
    display: inline-block;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25;
    user-select: none;
    white-space: nowrap;
    text-align: center;
    margin-left: auto;
    padding: 0.65rem 1.5rem;
    border-radius: 3rem;
    text-transform: capitalize;
    color: var(--color-white);
    background-color: var(--color-blue-600);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease-in-out;
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    order: -1;
    z-index: 10;
    width: 1.6rem;
    height: 1.15rem;
    border: none;
    outline: none;
    background: none;
    visibility: visible;
    transform: rotate(0deg);
    transition: 0.35s ease;
}

.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 0.125rem;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 1rem;
    transform: rotate(0deg);
    background-color: var(--color-white);
    transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
    top: 0;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
}

/* Header Media Queries */
@media only screen and (min-width: 48rem) {
    .menu {
        position: relative;
        top: 0;
        width: auto;
        height: auto;
        padding: 0;
        margin-left: auto;
        background: none;
        box-shadow: none;
    }

    .menu-inner {
        flex-direction: row;
        gap: 2rem;
        margin: 0 auto;
    }

    .menu-link {
        text-transform: capitalize;
    }

    .menu-block {
        margin-left: 2rem;
    }

    .burger {
        display: none;
        visibility: hidden;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5rem;
    text-align: center;
}

.hero h1 {
    font-family: 'All Round Gothic';
}

.hero h2 {
    text-wrap: auto;
    font-size: clamp(1vw, 5vw, 5vw);
}

.hero h2 span {
    /* font-weight: 100;
    font-family: 'All Round Gothic'; */
}

.hero img {
    display: block;
    max-width: 24rem;
    max-height: 24rem;
    object-fit: contain;
    width: 100%;
    height: auto;
    align-self: center;
    /* animation: float 3.5s ease-in-out infinite; */
    margin-bottom: 4rem;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.75rem);
    }
    100% {
        transform: translateY(0);
    }
}

/* Hero Media Queries */
@media only screen and (min-width: 48rem) {
    .hero .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: initial;
        width: 100%;
        max-width: 70rem;
    }

    .hero .content {
        min-width: calc(100vw / 5 * 2);
    }

    .hero h2 {
        font-size: clamp(1vw, 4vw, 3vw);
    }

    .hero img {
        order: 1;
        max-width: 20rem;
        margin: 0;
    }
}

/* ===== TABS SECTION ===== */
.tabs-section {
    padding: 5rem 0 0;
    color: var(--color-text);
}

.tabs-section .container {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 5rem 0;
}

.tabs-section .heading-lg,
.tabs-section .paragraph.centered {
    text-align: center;
    margin-bottom: 1rem;
}

.tabs {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    position: relative;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.5); */
    padding: 0 0 2rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--color-blue-600);
    color: var(--color-text);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2rem;
}

.tab-btn:hover {
    background-color: rgba(var(--color-blue-600-rgb), 0.1);
}

.tab-btn.active {
    background-color: var(--color-blue-600);
    color: white;
}

.tab-content {
    position: relative;
    min-height: 20rem;
}

.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    transform: translateY(20px);
}

.tab-pane.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

.tab-pane.fade-out {
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
}

.tab-inner {
    display: flex;
    flex-direction: column;
}

.tab-image {
    flex: 1;
    margin: 2rem auto 2rem;
    max-height: 24rem;
    max-width: 24rem;
}

.tab-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.tab-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab-text h3 {
    margin-bottom: 1rem;
}

.feature-list {
    margin-top: 1.5rem;
    /* padding-left: 1.5rem; */
}

.feature-list li {
    margin-bottom: 0.75rem;
    position: relative;
}

.feature-list li::before {
    /* content: ''; */
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-blue-600);
    border-radius: 50%;
}

/* Animation classes */
.fade-in {
    animation: tabFadeIn 0.5s ease forwards;
}

.fade-out {
    animation: tabFadeOut 0.5s ease forwards;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tabFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-30px);
    }
}

/* Responsive styles for tabs */
@media (min-width: 48rem) {
    .tab-inner {
        flex-direction: row;
    }

    .tab-image, .tab-text {
        flex: 1;
        margin-right: 3rem;
    }

    .tab-btn {
        padding: 0.75rem 2rem;
    }
}

@media (max-width: 47.9375rem) {
    .tab-buttons {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .tab-btn {
        text-align: center;
    }

    .tab-content {
        margin-top: 2rem;
    }

    .tab-text {
        margin: 0 2rem;
    }

    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .feature-list {
        padding: 0;
    }
}


@media (max-width: 61.9375rem) {
    .tab-image img {
        width: 100%;
        max-height: 18.75rem;
        max-width: 31.25rem;
        height: 100%;
        object-fit: contain;
        margin-bottom: 6rem;
    }
}

/* ===== PARALLAX SECTION ===== */
.parallax {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.parallax .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.parallax .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.parallax .content {
    position: relative;
    z-index: 3;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.parallax .content .container {
    padding: 1.25rem;
    max-width: 50rem;
    margin: 0 auto;
}

.parallax .content .heading-lg {
    margin-bottom: 1.25rem;
    font-size: 3rem;
    text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
}

.parallax .content .paragraph {
    margin-bottom: 1.875rem;
    font-size: 1.2rem;
    text-shadow: 0.0625rem 0.0625rem 0.1875rem rgba(0, 0, 0, 0.5);
}

/* ===== OVERLAP SECTION ===== */
.overlap-section {
    position: relative;
    z-index: 10;
    padding: 3.125rem;
}

.overlap-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.overlap-card {
    background-color: #fff;
    border-radius: 0.625rem;
    padding: 1.875rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overlap-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 0.9375rem 2.1875rem rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: #333;
    margin-bottom: 0.9375rem;
}

.overlap-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.9375rem;
    color: #333;
}

.overlap-card p {
    color: #666;
    line-height: 1.6;
}

/* Overlap Media Queries */
@media only screen and (min-width: 48rem) {
    .overlap-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .overlap-card {
        flex: 1;
    }
}

.gradient-background {
    background: linear-gradient(to bottom, #1a3c8b, #286190);
}

/* ===== FEATURE SECTION ===== */

.features {
    /* background: linear-gradient(to bottom, #122757, #000000); */
    padding-bottom: 0;
}

.feature {
    color: var(--color-text);
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 6rem 0 0 0;
}

.feature .wrapper {
    width: 100%;
    max-width: 62.5rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.25); */
    padding-bottom: 6rem;
}

.feature:nth-child(odd) .wrapper {
    flex-direction: column;
}

.feature .content {
    width: 100%;
}

.feature img {
    width: 100%;
    padding: 0 4rem;
    max-width: 24rem;
    max-height: 16rem;
    object-fit: contain;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.appear,
.fade-in-right.appear,
.fade-in-up.appear {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.feature h3 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.custom-watch-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
}

.custom-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 0.0625rem solid #8a7a4e;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.0625rem;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background-color: #8a7a4e;
}

/* Feature Media Queries */
@media (min-width: 48rem) {
    .feature .wrapper {
        flex-direction: row;
        justify-content: space-between;
    }

    .feature:nth-child(odd) .wrapper {
        flex-direction: row-reverse;
    }

    .feature .content {
        flex: 2;
    }

    .feature img {
        flex: 1;
    }

    .custom-watch-buttons {
        flex-direction: row;
    }
}

@media (max-width: 61.9375rem) {
    .feature {
        background-position: 80% center;
        text-align: center;
    }

    .custom-watch-content {
        width: 100%;
    }

    .feature img {
        width: 100%;
        max-height: 18.75rem;
        max-width: 31.25rem;
        height: 100%;
        object-fit: contain;
        margin-bottom: 6rem;
    }

    .custom-watch-content h1 {
        font-size: 2.5rem;
    }
}

/* Gallery light theme adjustments */

.images {
    text-align: center;
}

.images h2 {
    margin-bottom: 1rem;
}

.images p {
    margin-bottom: 4rem;
}

.gallery {
    columns: 3;
    column-gap: 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .gallery {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .gallery {
        columns: 1;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: calc(var(--delay) * 0.2s);
    background: white;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgb(0 54 168), transparent);
    padding: 2rem 1.5rem;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery .overlay h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery .overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FOOTER SECTION ===== */
footer {
    background-color: var(--color-black-500);
    color: var(--color-footer-text);
    padding: 3.75rem 0 0 0;
    text-align: center;
    position: relative;
}

.footer-container {
    max-width: 50rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    overflow: hidden;
}

.footer-container > * {
    z-index: 2;
    position: relative;
}

.footer-container:before {
    z-index: 1;
    position: absolute;
    content: '';
    /* background: url('../image/tech/02.png'); */
    width: 100%;
    background-size: contain;
    max-width: 43.75rem;
    height: 22.8125rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    animation: float-bob 30s linear infinite;
}

@keyframes float-bob {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, -48%);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    height: 5rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: 'All Round Gothic';
    font-weight: 100;
    font-size: 3rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-highlight {
    color: var(--color-accent);
    font-size: 1.2rem;
    font-weight: bold;
}

.logo-main {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-description {
    max-width: 37.5rem;
    margin: 0 auto 1.875rem;
    line-height: 1.6;
}

.footer-divider {
    height: 0.0625rem;
    background-color: var(--color-border);
    margin: 1.875rem auto;
    width: 60%;
}

.footer-contact {
    margin-bottom: 1.875rem;
}

.address,
.phone {
    margin: 0.625rem 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9375rem;
    margin: 1.875rem 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 0.0625rem solid var(--color-border);
    color: var(--color-footer-text);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.footer-bottom {
    padding: 1.25rem 0;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright {
    font-size: 0.9rem;
}

.logo-small {
    color: var(--color-white);
    font-weight: bold;
}

.logo-small-highlight {
    color: var(--color-accent);
    font-size: 0.7rem;
    vertical-align: super;
    margin-left: 0.125rem;
}

/* Footer Media Queries */
@media (max-width: 48rem) {
    .footer-social {
        gap: 0.625rem;
    }
}



/* Add these styles for the SVG wave animation */
.hero {
    position: relative;
    overflow: hidden;
}

.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.waves {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50vh;
    /* min-height: 100px; */
    max-height: 150px;
}

/* Animation for the SVG waves */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% {
        transform: translate3d(85px,0,0);
    }
}

/* Make sure the content is above the waves */
.hero .container {
    position: relative;
    z-index: 4;
}