/*
Theme Name: Custom Dgitial Invite
Description: A custom digitalinvite theme.
Version: 1.0
Author: Tracy
*/

@font-face {
  font-family: 'riddara';
  src: url('/wp-content/themes/digitalinvite/fonts/riddara.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    font-size: large;
    font-family: sans-serif;
    color: white;
    background-color: #485543;
}

.event-section{
    display: flex;
    width: 100vw;
    height: 100vh;
    background-color: #485543;
    flex-direction: column;
	align-items: flex-start; 
}

.image-container{
	display: flex;
    width: 100vw;
    justify-content: flex-end;
    padding-top: 1%;

}
.event-section .logo {
  width: 15vw;
  height: 15vh;
  object-fit: contain;
}

.event-info{
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
	align-items: center; 
    justify-content:center;
}

.title {
  font-family: 'riddara', sans-serif;
  font-size: xx-large;

}

.subtitle{
    font-weight: 600;
}

.orangeComment{
color: #f3712f;
}

.info{
	display: flex;
    flex-direction:row;
    width: 100vw;
    justify-content: center;
    align-items: end;
    gap:1%;
    }
    

.info-details{
    display: flex;
    justify-content: center;
    align-items: center;
}
.event-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.text-info {
border-right: 1px solid white;
    padding-right: 5px;
    }
    
    a.orangeComment {
  text-decoration: none;
}

#rsvp-section{
display:none;
    width: 100vw;
    height: 100vh;
    background-color: #485543;
    flex-direction: column;
    align-items: flex-start;}
    
    .rsvp-info{
        display: flex;
    width: 100%;
    flex-direction: column;
	align-items: center; 
    justify-content:center;
    }
    
    .subtitle-rsvp{
    font-size:xx-large;
    font-style: italic;}
    
.buttonsres {
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 1%;
    justify-content: center;
    align-items:center;
}

    
    .rsvp-button {
    color: white;
    border: 1px solid white;
    padding: 2% 2%;
    white-space: nowrap;
    font-size: larger;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #485543;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
}

.rsvp-button:hover {
background-color: white;
color:#485543;
transform: scale(1.05);
}

.rsvp-button.selected {
background-color: white;
color:#485543;
transform: scale(1.05);
opacity:1;
}

#submit-button{
width:50%;}

@media (max-width: 768px) {
  .buttonsres {
    flex-direction: column;
  }
}