@import url("https://fonts.googleapis.com/css2?family=Arya:wght@400;700&display=swap");
@import url("nav.css");
@import url("footer.css");
@import url("chat.css");
body {
  background-image: url('Short\ bg.png');
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: 100% auto;
  overflow-x: hidden;
  margin: 0;
  font-family: Tahoma, Verdana, sans-serif;
}
p,h1,h2,h3, .date, .day, .monthYear, .eventsListText{
  font-family: "Arya", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#monthYear{
    font-size: 2vw;
    width: auto;
}
.date{
    font-size: 1.5vw;
}
.dayText{
    font-size: 1.5vw;
}
.calendar {
    width: 100%;
    max-width: 40vw;
    margin: auto;
    margin-top: 5vw;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 1.2vw;
    background: white;
    border-radius: 2vw;
    opacity: 0.8;
    border: solid, 0.2vw #FEB84E;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1%;
}

.monthYear {
    text-align: center;
    font-weight: 600;
    width: 20%;
    font-size: larger;
}

.header button{
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    width: 3vw;
    height: 3vw;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    font-size: 1.5vw;
}
.header button:hover {
    transform: scale(1.2);
}
.days {
    display: grid;
    grid-template-columns: repeat(7,1fr);
}

.dates {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 10px 10px;
}



.day {
    text-align: center;
    padding: 10%;
    color: #000000;
    font-weight: 500;
    font-size: large;
}
.date {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2%;
    margin: auto;
    cursor: pointer;
    font-weight: 300;
    border-radius: 100%;
    width: 3vw;
    height: 3vw;
    transition: 0.2s;
    transition: transform 0.3s ease, color 0.3s ease;
}

.date.active {
    background: #ffb850;
    color: white;
}
.date:hover{
    transform: scale(1.2);
    background: #ffb850;
    color: white;
}

.date.inactive {
    color: #233A69;
}

.date.inactive:hover {
    color: white;
}
.date.selected {
    background: #ffb850;
    color: white;
    transform: scale(1.1);
}
.date.today {
    border: 0.2vw solid #ffb850;
    background: none;
    color: black;
}
.date.selected {
    background: #ffb850;
    color: white;
}
h1,h2,h3,p{
    font-family: "Arya", sans-serif;
    font-weight: 400;
    font-style: normal;
}
html{
    margin: 0;
}
body, html{
    overflow-x: hidden;
}
#topSection{
    height: 11vw;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}
#calendarText{
    margin-top: 4vw;
    text-align: center;
    line-height: 10vw;
    letter-spacing: 3vw;
    font-size: 2.1vw;
}
#topLogo{
    height: 6vw;
    margin-top: 4vw;
}
#eventSection{
    margin-top: 1vw;
    margin-bottom: 5vw;
    padding: 1vw;
    background: none;
    text-align: center;
}
.eventsTitle{
    font-size: 2.5vw;
}
#eventList {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vw;
  font-size: 1.5vw;
}

#eventSection h2 {
  display: block;       
  width: 100%;          
  text-align: center;   
  margin: 0 auto 1vw;  
}

#eventList p {
  margin: 0;
  padding: 0.5vw 1vw;
  background: #ffb850;
  color: #000;
  border-radius: 1vw;
  font-weight: 500;
  opacity: 0.8;
}
@media (max-width: 768px){
    body{
        background-image: url("long-bg.png");
    }
    #topSection{
        height: 18vw;
    }
    #calendarText{
        font-size: 4vw;
        letter-spacing: 4vw;
        margin-top: 6vw;
    }
    #topLogo{
        height: 8vw;
    }
    .calendar{
        max-width: 90vw;
        height: auto;
        border-width: 0.5vw;
        margin-top: 20vw;
    }
    .dayText{
        font-size: 3vw;
    }
    #monthYear{
        font-size: 4vw;
    }
    .date{
        width: 6vw;
        height: 6vw;
        font-size: 3vw; 
    }
    .header button{
        width: 6vw;
        height: 6vw;
        font-size: 3vw; 
        color: black;
    }
    .date.today {
        border: 0.5vw solid #ffb850;
        opacity: 1;
    }
    .eventsTitle{
        font-size: 7vw;
        color: white;
    }
    #eventList p{
      font-size: 3.5vw;
    }
    #eventSection{
        margin-bottom: 33vw;
    }
}