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

body {
    font-family: Roboto, sans-serif;
    overflow-x: hidden;
    background-color: #000;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 12vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 10px #FFF;
    background-color: rgba(255, 255, 255, 1);
    transition: transform 0.3s ease-in-out;
}


.navbar nav ul {
    display: flex;
    list-style: none;
}

.navbar nav a {
    text-decoration: none;
    padding: 0 30px;
    font-size: 20px;
    color: #000;
}

.navbar nav a:hover {
    color: #fff;
    font-size: 25px;
}


/* Spacer (2 100vh to push content down) */
#spacer1 {
    width: 100%;
    height: 100vh;
    z-index: -1;
}

#spacer2 {
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: -1;
    position: relative;
}

.scrolling #landing {
    position: absolute;
    top: 0;
}

/* Content Styling */
.content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* scroll-margin-top: 12vh; */
    box-sizing: border-box;
}

h1 {
    padding-top: 20vh;
    color: white;
}

/* Landing screen split */
#landing {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    overflow: hidden;
}

section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

section .side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section .side#side1 {
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

section .side#side2 {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

section .side img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#spacer2 {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Oculta cualquier overflow */
}

#spacer2 iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.subscribe-banner {
    padding: 60px 20px;
    background: linear-gradient(to right, #ff0055, #ff66cc);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 800px;
    animation: pulseGlow 3s infinite ease-in-out;
}

.subscribe-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subscribe-banner p {
    font-size: 1.2rem;
    max-width: 600px;
}

.subscribe-btn {
    background-color: #fff;
    color: #ff0055;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #ff0055;
    color: #fff;
    box-shadow: 0 0 15px #fff;
}

/* Animación sutil */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 10px #fff2, 0 0 20px #ff66cc88;
    }
    50% {
        box-shadow: 0 0 20px #fff5, 0 0 30px #ff66cccc;
    }
}

.custom-alert {
    position: relative;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 1rem 2rem 1rem 1rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    line-height: 1.5;
    margin: 20px auto;
    animation: bounceIn 0.5s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.custom-alert strong {
    font-weight: bold;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: inherit;
    cursor: pointer;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    60% {
        transform: scale(1.05);
        opacity: 1;
    }
    80% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}































@import url(https://fonts.googleapis.com/css?family=PT+Sans+Narrow:700,400|Titillium+Web:400,600,700,300);

$body-bg: #e5e5e5;
$green-bg: #2cd0c8;

@mixin trans($prop: all, $time: 0.4s, $time_function: ease-in-out) {
    transition: $prop $time $time_function;
}

* {
    box-sizing: border-box;
}

::-webkit-input-placeholder {
    color: #e4e4e4;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: $body-bg;
    font-family: 'PT Sans Narrow', sans-serif;
}



.wrapper {
    position: relative;
    width: 850px;
    height: 500px;
    margin: 100px auto;
    background: url('https://images.pexels.com/photos/301284/pexels-photo-301284.jpeg?w=1260&h=750&auto=compress&cs=tinysrgb');
    background-position: 90% 50%;
    box-shadow: 0 5px 5px rgba(55, 55, 55, .4);

    .name {
        position: absolute;
        bottom: 10px;
        left: 20px;
        color: #fff;
        font-size: 55px;
        word-wrap: wrap;
        padding: 10px;
        font-family: 'Titillium Web', sans-serif;
        @include trans();

        &:hover {
            cursor: default;
            transform: translateX(-20px);
        }

        &:first-letter {
            font-size: 100px;
        }
    }
}

.aboutme {
    position: absolute;
    right: 20px;
    top: -50px;

    width: 400px;
    height: 120%;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 4px rgba(55, 55, 55, .3);
    border-radius: 5px;

    h2 {
        color: #444;
        font-size: 26px;
    }

    p {
        color: #999;
    }

    .links {
        margin: 30px 0px 50px;

        a {
            display: block;
            margin: 10px 0;
            font-size: 15px;
            text-decoration: none;
            color: #333;

            &:before {
                font-family: "FontAwesome";
                content: '\f0c1';
                font-size: 11px;
                padding-right: 10px;
            }

            &.location {
                &:before {
                    content: '\f124';
                }
            }
        }
    }

    .stats {
        display: flex;
        justify-content: space-between;
        text-align: center;
        margin-top: 30px;

        .num {
            font-size: 25px;
            letter-spacing: 2px;
        }

        .text {
            color: #999;
        }
    }
}