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

body {
    background-image: url('../images/wedding_couple_landing.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: black;
    display: flex;
    height: 100vh;
    font-family: 'Quicksand', sans-serif;
}

.landing-page {
    width: 80vw;
    max-width: 1200px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    margin: 20vh 20vw;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    font-weight: bold;
    color: black;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    gap: 10px;
}

.cta-buttons button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

a {
    text-decoration: none;
    color: white;
}

.cta-buttons .signup {
    background: #b17777;
    color: white;
}

.cta-buttons .signup:hover {
    background: #875c5c;
}

.cta-buttons .trial {
    background: #d8a1a1;
    color: white;
}

.cta-buttons .trial:hover {
    background: #b17777;
}

main {
    height: 80%;
    width: 100%;
    display: flow;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: auto;
}

.intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.intro p {
    font-size: 18px;
    margin-bottom: 20px;
}

.intro .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer {
    margin-top: 15px;
    font-size: 14px;
    color: black;
}

.trix-button-group--file-tools {
    display: none !important;
}

.active {
    filter: brightness(75%);
    color: #b17777;
    text-decoration-line: underline;
}

@media (max-width: 768px) {
    .landing-page {
        width: 100vw;
        height: auto;
        margin: 0;
        overflow: scroll;
    }

    main {
        display: table-cell
    }

    header {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin-left: 0;
        margin-top: 10px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .intro h1 {
        font-size: 36px;
    }

    .intro p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .intro h1 {
        font-size: 28px;
    }

    .intro p {
        font-size: 14px;
    }

    .cta-buttons button {
        padding: 8px 16px;
        font-size: 14px;
    }
}
