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

body {
    font-family: 'Lato', sans-serif;
    background-color: #000;
    color: #fff;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    opacity: 0;
}

.header {
    position: fixed;
    top: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    z-index: 100;
}

.header a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.header a:hover {
    opacity: 1;
}

.header a.active {
    opacity: 1;
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
}

.page.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

#start {
    position: relative;
}

.logo {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.1);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    font-style: italic;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}

.tagline::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    animation: typing 1.5s steps(26) 0.5s forwards;
}

@keyframes typing {
    to { width: 0; }
}

.btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #d9d9d9;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    position: relative;
    overflow: hidden;
    opacity: 0.8;
}

.btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.btn:hover {
    opacity: 1;
    border-color: #fff;
}

.btn:hover:after {
    width: 100%;
}

.contact-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: absolute;
    top: 20%;
    left: 10%;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: absolute;
    top: 40%;
    left: 10%;
}

.contact-links a {
    color: #d9d9d9;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.contact-links a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: transparent;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.contact-links a:hover {
    color: #ffffff;
}

.contact-links a:hover:before {
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .logo {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .contact-title {
        font-size: 3.5rem;
    }
}
