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

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

/* PARALLAX BACKGROUND */
.parallax {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url("IllustationLanzarote.png") no-repeat center center;
    background-size: cover;
    transform: translateZ(0);
    z-index: -2;
}

/* DARK OVERLAY */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.75)
    );
    z-index: -1;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

/* Fade in animation */
.hero-content {
    max-width: 1100px;
    animation: fadeIn 2s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Elegant Title */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Gold decorative line */
.gold-line {
    width: 100px;
    height: 2px;
    margin: 20px auto 30px auto;
    background: linear-gradient(to right, #c8a96a, #f2e3c6);
}

/* Tagline */
.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 50px;
    opacity: 0.9;
}

/* Content box */
.content-box {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-bottom: 40px;
}

.column {
    max-width: 450px;
    text-align: left;
}

.column h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.column p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 300;
}

/* Contact email */
.contact {
    margin-top: 20px;
}

.contact a {
    font-size: 1.1rem;
    text-decoration: none;
    color: #f2e3c6;
    letter-spacing: 1px;
    border-bottom: 1px solid #f2e3c6;
    padding-bottom: 5px;
    transition: all 0.4s ease;
}

.contact a:hover {
    opacity: 0.7;
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {

    h1 {
        font-size: 2.8rem;
    }

    .content-box {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .column {
        text-align: center;
    }
}
