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

body {
    font-family: 'D-DIN', sans-serif;
    line-height: 1.6;
    color: #333;
    width: 100dvw;
    overflow-x: hidden;
    background: #FAFAFA;
}

/* Hero Section */
.hero {
    height: 100vh;
    /* background: linear-gradient(180deg, #FAFAFA 0%, #dedefa 30%, #FAFAFA 100%); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 4px;
    width: 50%;
    min-width: 200px;
    padding-top: 0.8vw;
    font-size: clamp(0.8rem, 2vw, 1.4rem);
    color: #5C5C5C;
    z-index: 20;
}

.hero div img {
    width: 100%
}

.contact-btn {
    position: absolute;
    bottom: 20%;
    background: rgba(255, 255, 255, 0.2);
    color: #5C5C5C;
    border: 1px solid #5C5C5C;
    padding: 0.8rem 1.6rem;
    font-size: clamp(0.8rem, 4vw, 1rem);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.0);
    color: #7a7c85;
    border: 1px solid #7a7c85;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(28, 96, 233, 0.2);
}

/* Animated Icons */
.icon {
    position: absolute;
    font-size: clamp(2rem, 6vw, 3rem);
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: all 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.icon.animate {
    opacity: 1;
    animation: subtleFloat 6s ease-in-out infinite;
}

.icon:nth-child(odd) {
    animation-delay: -3s;
}

@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Content Sections */
.content-section {
    /* min-height: 100vh; 
    padding: 4rem 2rem;
    */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: fit-content;
}

.content-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-container.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-image {
    width: 100%;
    height: fit-content;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
}

.content-image img {
    width: 100%;
}

.content-text {
    padding: 2rem;
}

.text-light h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    color: #fdfdfd;
}

.text-light p {
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.8;
    color: #fdfdfd;
}

.text-dark h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    color: #181818;
}

.text-dark p {
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.8;
    color: #181818;
}

.dropshadow {
    filter: drop-shadow(0px -10px 4px #00000041);
}

/* Carousel */
.carousel-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: start;
}

.carousel-container h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 3rem;
    color: #181818;
}

.carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.carousel-item {
    aspect-ratio: 1;
    background: linear-gradient(45deg, #ededed, #d6d6d6);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(1rem, 3vw, 1.2rem);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 120px;
}

.carousel-item img {
    height: auto;
    width: 100%;
}

.footerRow {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8vw;

    padding-top: 150px;
    padding-bottom: 150px;
}

.footerContainer {
    height: fit-content;
    min-width: 15vw;
}

.footerHeader {
    text-align: left;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-bottom: 25px;
}

.footerText {
    text-align: left;
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.4;
}

.largeFlexbox {
    flex-grow: 2;
    max-width: 350px;
}

.smallFlexbox {
    flex-grow: 1;
}

.linkSection {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 45px;
}

a {
    text-decoration: none;
    color: #181818;
}

.boldText {
    font-weight: 900;
}

.footerName {
    text-align: left;
    font-size: clamp(1rem, 3vw, 1.4rem);
    line-height: 1.8;
    font-weight: 10;
    margin-bottom: 15px;
}

/* Mobile-specific styles */
@media (hover: none) and (pointer: coarse) {
    .carousel-item:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .carousel-item:active {
        transform: scale(0.98);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .contact-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        transform: none;
        box-shadow: none;
    }

    .contact-btn:active {
        background: white;
        color: #667eea;
        transform: scale(0.98);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
    }

    .content-container,
    .content-container.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-container.reverse .content-image {
        order: 1;
    }

    .content-container.reverse .content-text {
        order: 2;
    }

    .content-section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .content-image {
        height: 250px;
        width: auto;
    }

    .content-image img {
        max-width: 100%;
    }

    .content-text {
        padding: 1rem;
    }

    .carousel {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.8rem;
    }

    .carousel-section {
        padding: 3rem 1rem;
    }

    /* Adjust icon positions for mobile */
    .icon {
        font-size: 2.5rem;
    }

/*     .footerText {
        font-size: 1.1em;
        line-height: 1.3em;
    }

    .footerName {
        font-size: 1.2em;
        line-height: 1.4em;
        font-weight: 10;
        margin-bottom: 15px;
    } */

    .button {
        padding: 5px 30px;
        background-color: #FAFAFA;
        outline: 1px solid #000000;
        border-radius: 12px;
    }

    .footerRow {
        background-color: #FAFAFA;
        padding: 0 2vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 8vw;
    }

/*     .footerHeader {
        text-align: left;
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .footerText {
        text-align: left;
        font-size: 1.1em;
        line-height: 1.25em;
    } */
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .content-section {
        padding: 2rem 0.5rem;
    }

    .content-image {
        height: fit-content;
        margin: 0 0.5rem;
    }

    .carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .carousel-item {
        min-height: 100px;
        font-size: 0.9rem;
    }

    .carousel-container h2 {
        margin-bottom: 2rem;
    }

    /* Mobile icon adjustments */
    .icon {
        font-size: 2rem;
    }
}