@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

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

body, html {
    height: 100%;
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
}

.hero {
    height: 100vh;
    width: 100%;
    background-image: url('./images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr;
}

.content {
    grid-row: 1;
    align-self: start;
    text-align: left;
    color: white;
    padding: 40px;
    animation: fadeInUp 1s ease;
}

.content h1 {
    font-size: 6vw;
    /* margin-bottom: 1rem; */
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content p {
    font-size: 3vw;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: #f0f0f0;
}

.footer {
    grid-row: 2;
    align-self: end;
    color: white;
    font-size: 3vw;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    padding: 40px 40px;
}

.name-with-chevron {
    position: relative;
    display: inline-block;
}

.chevron-container {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chevron-text {
    font-size: .5em;
    white-space: nowrap;
    margin-bottom: 0px;
}

.chevron {
    font-size: .5em;
    line-height: 1;
    display: inline-block;
    transform: rotate(90deg);
    margin-top: 2px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    body, html {
        overflow: hidden;
        height: 100dvh;
    }
    
    .hero {
        height: 100dvh;
        overflow: hidden;
    }
    
    .overlay {
        align-items: flex-start;
        height: 100dvh;
    }
    
    .content {
        padding: 20px 15px;
    }
    
    .content h1 {
        font-size: 7vw;
        margin-bottom: 0.5rem;
    }
    
    .content p {
        font-size: 5vw;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 4.5vw;
    }
    
    .footer {
        font-size: 3vw;
        padding: 20px 20px;
    }
    
    .chevron-container {
        top: -35px;
    }
    
    .chevron-text {
        font-size: 0.8em;
    }
    
    .chevron {
        font-size: 0.8em;
        margin-top: 3px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 15px 10px;
    }
    
    .content h1 {
        font-size: 8vw;
        margin-bottom: 0.5rem;
    }
    
    .content p {
        font-size: 5.5vw;
        margin-bottom: 1.2rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 4vw;
    }
    
    .footer {
        font-size: 5vw;
        padding: 15px 15px;
    }
    
    .chevron-container {
        top: -28px;
    }

    .chevron-text {
        font-size: 0.7em;
        white-space: nowrap;
        margin-bottom: 0px;
    }

    .chevron {
        font-size: 0.7em;
        line-height: 1;
        display: inline-block;
        transform: rotate(90deg);
        margin-top: 0;
    }
}
