@import url('https://fonts.googleapis.com/css2?family=Mohave:ital,wght@0,300..700;1,300..700&family=Rubik+Distressed&display=swap');

/* General Resets */
body {
     font-family: 'Lato', sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: lightgray;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Navigation */
.nav { 
     width: 1440px;
    background-color: #fff;
    margin: 0 auto;
    justify-content: space-between;
    padding: 1.5em 0;
}

.nav, .main-nav {
    display: flex;
}

.main-nav {
    margin: 0 auto;
    padding: 10px 0;
}

.logo {
    margin: 0;
    font-size: 3em;
    font-family: 'Slackey', cursive;
    padding-left: 100px;
}

.logo img { 
    height: 50px;
 }

 .main-nav a {
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}


.main-nav a:hover {
    color: #e68a44;
}

.main-nav li a:hover {
    display: block;
}

/* header Section */
header { 
    background: url('../images/concertpic.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 1440px;
    height: 723px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px;
}

header h1 { 
    font-family: 'Rubik Distressed';
    font-size: 60px;
    color: #cc9966; 
    text-align: center;
    margin: 0;
    padding: 8%;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); 
}

.returns { 
    font-family: 'Rubik Distressed'; 
    display: block;
    color: white;
    text-align: center;
    font-size: 4rem; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); 
}

/* Colors */
.blue-bg { 
    width: 1440px;
    margin: 0 auto;
    background-image: linear-gradient(#84C8FF, #E9BB99);
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 50px 0;
    font-family: 'Lato', sans-serif;
}


/* Info Section */
.info h2 { 
    font-family: 'Mohave';
    text-align: center;
    color: #fff;
    font-size: 60px; 
    letter-spacing: 2px; 
}

.date {
    font-family: 'Mohave';
    text-align: center;
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 2px; 
}

.url {
    font-family: 'Mohave';
    text-align: center;
    color: #fff;
    font-size: 38px;
    font-weight: bold; 
    letter-spacing: 2px; 
}

/* i think the divider is too long but the body tag won't let it get longer  */
.divider { 
    width: 80%; 
    margin: 30px auto; 
    border: 0; 
    border-top: 2px solid #fff; 
}

/* Card Grid */
.cards { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    padding: 20px; 
}

.card { 
    width: 326px; 
    height: 326px; 
    border: 3px solid white; 
    border-radius: 10px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    background-size: cover; 
    position: relative;
}

.card-content h3 {
    font-family: 'Mohave';
    color: #fff; 
    text-align: center;
    font-size: 48px; 
}

.card-content a { 
    font-family: 'Mohave';
    color: #fff; 
    text-align: center; 
    text-decoration: none; 
    font-size: 30px; 
}

.card-one { 
    background-image: url('../images/foodndrinks.jpg');
}

.card-two { background-image: url('../images/artsncrafts.jpg'); 
}

.card-three { background-image: url('../images/oakharbornews.jpg'); 
}

/* Poster & About */
.main-poster { 
    max-width: 400px; 
    border: 2px solid white; 
    margin: 20px 0; 
    
}

.about-text { 
    max-width: 700px;
    margin: 0 auto; 
    padding: 20px; 
    font-size: 13px; 
    line-height: 1.4; 
}

/* Donation Box */
.cta-box { 
    background: #e2e2e2; 
    border: 1px solid white; 
    width: fit-content; 
    margin: 40px auto; 
    padding: 30px 60px; 
    color: #555;
}
.btn-donate { 
    display: inline-block; 
    background: linear-gradient(to right, #1D9DB1, #F8711F);
    color: white; 
    padding: 10px 40px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold;
    margin-top: 15px;
}

/* Sponsors */
.logo-grid { 
    display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px; 
    max-width: 900px; 
    margin: 0 auto; 
    align-items: center;
}

.logo-grid img { 
    width: 100%; 
    height: auto; 
    filter: grayscale(20%); 
}

/* Footer */
.footer-logo { 
    font-size: 2rem; 
    color: white; 
    letter-spacing: 3px; 
}

.socials { 
    font-size: 2rem; 
    margin: 20px 0; 
}