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

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Custom Cursor */
#custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #ffd700;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    background: rgba(255, 215, 0, 0.2);
}

#custom-cursor.hover {
    transform: scale(1.5);
    background: rgba(255, 215, 0, 0.4);
}

/* Filigrane e pattern */
.watermark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    /* opacity: 0.03; */
    /* background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(255, 255, 255, 0.1) 35px,
        rgba(255, 255, 255, 0.1) 70px
    ); */
    background-image: url("../images/dots.png");
    background-position: center;
    background-repeat: repeat;
}

.dotted-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section video {
    height: 100vh;
    object-fit: cover;
    position: absolute;
    width: 100vw;
}

/* .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

/* .logo {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    text-transform: lowercase;
} */
.logo {
    left: 3.5%;
    position: absolute;
    top: 1rem;
    width: 240px;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 4rem;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.yellow-accent {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 60px solid #ffd700;
    position: absolute;
    left: 10%;
    top: 60%;
    opacity: 0.8;
}

.full-background {
    background-image: url("../images/full_background.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Description Section */
.description-section {
    position: relative;
    padding: 4rem 0;
    z-index: 2;
}

.description-text {
    font-size: 1.6rem;
    font-weight: 300;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Partners Section */
.partners-section {
    position: relative;
    padding: 4rem 0 0;
    z-index: 2;
}

.partners-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.partners-title::before,
.partners-title::after {
    content: "";
    display: inline-block;
    width: 180px;
    height: 1px;
    background: #fff;
    vertical-align: middle;
    margin: 0 20px;
}

.logo-grid {
    position: relative;
    min-height: 360px;
}

.logo-set {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.logo-set.active {
    opacity: 1;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 120px;
}

.logo-item img {
    max-width: 180px;
    max-height: 80px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
}

/* CTA Button */
.cta-section {
    text-align: center;
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ffd700;
    color: #000;
}

/* Footer */
.footer {
    background: #000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer .border-left {
    border-left: 1px solid white;
}

.footer-content {
    font-size: 0.9rem;
    line-height: 1;
    opacity: 0.7;
}

.footer a {
    color: #ffd700;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    float: right;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: #ffd700;
    background: #ffd700;
}

@media (max-width: 768px) {
    .logo {
        width: 180px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .description-text {
        font-size: 1.1rem;
    }

    .partners-title::before,
    .partners-title::after {
        width: 60px;
    }

    .logo-grid {
        min-height: 480px;
    }
    
    .logo-item {
        padding: 1rem;
    }
}
