body, html {
    height: 100%;
    margin: 0;
    font: 400 15px/1.8 "Lato", sans-serif;
    background-color: #000000;
}

.event {
    height: 22vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 5px solid #808080;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.row {
    padding-top: 5vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.column {
    flex: 1 0 21%;
    margin: 1%;
}

.call-to-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2vh;
    margin-left: auto;
    margin-right: auto;
}

.socials {
    margin-top: 150px;
}

.social-icon {
    color: #fff;
}

ul.social-icons {
    margin-top: 10px;
    text-align: center;
    position: relative;
    left: -20px;
}

.social-icons li {
    list-style: none;
    vertical-align: top;
    display: inline;
    height: 150px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
}

li.social-icon {
    display: inline-block;
}

.social-icon-style {
    padding: 10px 14px;
    transition: .5s;
    background-color: #322f30;
}

.social-icon-style:hover {
    background-color: #3d5b99;
}

.caption {
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #000;
}

.img-fill img {
    mask-image: linear-gradient(to bottom, transparent 25%, black 75%);
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
}

img {
    border-radius: 3%;
}

.call-to-action h1 {
    color: white;
    font: 1.5em 'Dosis', sans-serif;
    letter-spacing: 1px;
    text-align: center;
}

.center {
    text-align: center;
    color: white;
}

.button, .button1, .button-sold-out {
    padding: 15px 25px;
    font: 16px 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    margin: 0.7em auto;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 90%;
    max-width: 320px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 30px;
    transition: all 0.3s ease;
    line-height: 1.3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button1 {
    background: linear-gradient(45deg, #1e90ff, #007BFF);
    border: none;
    color: white;
}

.button1:hover {
    background: linear-gradient(45deg, #007BFF, #1e90ff);
    transform: scale(1.1);
}

.button-sold-out {
    background: #808080;
    border: none;
    color: white;
}

.button1, .button-sold-out {
    max-width: 300px;
}

.button.facebook {
    background-color: #4267B2;
    color: white;
    border: 2px solid #4267B2;
}

.button.facebook:hover, .button.facebook:focus {
    background-color: #3b5998;
    border-color: #3b5998;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.button.buy {
    background: linear-gradient(45deg, #FF4E50, #F9D423);
    border: none;
    color: white;
}

.button.buy:hover, .button.buy:focus {
    background: linear-gradient(45deg, #F9D423, #FF4E50);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.button.coming-soon, .button.sold-out {
    background-color: #808080;
    border: 2px solid #808080;
    color: white;
    cursor: not-allowed;
}

.button.coming-soon:hover, .button.coming-soon:focus,
.button.sold-out:hover, .button.sold-out:focus {
    background-color: #6c6c6c;
    border-color: #6c6c6c;
    transform: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button i {
    margin-right: 10px;
    font-size: 18px;
}

.redirect-message {
    text-align: center;
    margin-top: 20vh;
    font-size: 24px;
    color: #ffffff;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.redirect-message a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.redirect-message a:hover {
    color: #ffd633;
    text-decoration: underline;
}

@media only screen and (max-device-width: 1024px) {
    .event {
        height: 90vw;
    }

    .socials {
        margin-top: 0 !important;
    }

    .column {
        display: block;
        padding-bottom: 15vh;
    }

    .button, .button1, .button-sold-out {
        width: 90%;
        max-width: none;
        font-size: 20px;
        padding: 18px 25px;
        min-height: 80px;
        margin: 1em auto;
    }
}

@media (max-width: 600px) {
    .button, .button1, .button-sold-out {
        width: 95%;
        font-size: 18px;
        padding: 16px 22px;
        min-height: 70px;
    }
}

@media (max-width: 400px) {
    .button, .button1, .button-sold-out {
        width: 95%;
        font-size: 16px;
        padding: 14px 20px;
        min-height: 60px;
    }
}
