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

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Source Sans 3', sans-serif;
    color: #423e28;
}

.bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
    border-radius: 500px 500px 30px 30px;
    width: 100%;
    max-width: 680px;
    min-height: 85vh; /* Gives it the tall shape from the design */
    margin-left: max(5vw, 150px);
    padding: 10vh 40px 8vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    height: 200px;
    width: auto;
    margin-bottom: 6vh;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 6vh;
}

.title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-block {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.location-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-row .line {
    width: 60px;
    height: 1px;
    background-color: #423e28;
}

.footer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto; /* pushes footer block to the bottom */
}

.join-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 37px;
    margin-bottom: 11px;
}

.social-icons {
    display: flex;
    gap: 17px;
    margin-bottom: 10px;
}

.social-icons img {
    height: 26px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

.email {
    font-size: 18px;
    color: #423e28;
    text-decoration: none;
    line-height: 37px;
    transition: opacity 0.3s ease;
}

.email:hover {
    opacity: 0.7;
}

/* Responsive - Mobile layout */
@media screen and (max-width: 1024px) {
    .container {
        justify-content: center;
        padding: 40px 20px;
    }

    .glass-card {
        margin-left: 0;
        min-height: auto;
        padding: 80px 25px 60px;
        border-radius: 300px 300px 30px 30px;
    }
}

@media screen and (max-width: 600px) {
    .glass-card {
        border-radius: 200px 200px 25px 25px;
        padding: 60px 20px 40px;
    }
    
    .logo {
        height: 120px;
        margin-bottom: 40px;
    }

    .title {
        font-size: 22px;
    }

    .info-block {
        font-size: 19px;
    }

    .location-row .line {
        width: 35px;
    }
}
