/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif; /* Using a classic serif font to match the aesthetic */
    line-height: 1.6;
    background-color: #f4f9f9;
    color: #333;
}

/* Header & Nav */
header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 2.5rem;
    font-family: 'Brush Script MT', cursive;
}

.social-icons a, .search-icon i {
    color: #333;
    margin: 0 10px;
    text-decoration: none;
}

.main-menu {
    margin-top: 20px;
}

.main-menu ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.main-menu ul li {
    margin: 0 15px;
}

.main-menu ul li a {
    text-decoration: none;
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Main Content Wrapper */
main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}


/* Footer */
footer {
    text-align: center;
    padding: 60px 20px;
    background: #f4f9f9;
    margin-top: 50px;
}

.footer-logo {
    font-family: 'Brush Script MT', cursive;
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-socials a {
    color: #333;
    margin: 0 10px;
    font-size: 1.2rem;
}

.footer-bottom {
    margin-top: 40px;
    font-size: 0.7rem;
    color: #888;
    display: flex;
    justify-content: space-between;
}

/* --- RESPONSIVENESS --- */

/* Tablet View */
@media (max-width: 768px) {
    .main-menu ul {
        flex-wrap: wrap;
    }
    .main-menu ul li {
        margin: 5px 10px;
    }
    .contact-grid {
        grid-template-columns: 1fr; /* Stack columns */
    }
    .contact-image {
        height: 400px;
    }
}

/* Phone View */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    .main-menu ul li a {
        font-size: 0.7rem;
    }
    .contact-form-container {
        padding: 30px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}


.group-shows{

width:90%;

max-width:1350px;

margin:80px auto;

}

.year-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:55px;

margin-bottom:100px;

}

.year-card h2{

font-family:'Cormorant Garamond',serif;

font-size:58px;

font-weight:600;

margin-bottom:25px;

color:#222;

}

.year-card ul{

padding-left:20px;

}

.year-card li{

font-size:15px;

line-height:1.9;

color:#555;

margin-bottom:8px;

}

.year-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:70px;

margin-bottom:110px;

align-items:flex-start;

}

.year-card{

width:100%;

}

.year-card ul li{

font-size:15px;

line-height:2;

color:#555;

}

.year-card h2{

margin-bottom:22px;

font-size:62px;

font-family:'Cormorant Garamond',serif;

font-weight:700;

}


/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.year-grid{

grid-template-columns:repeat(2,1fr);

gap:50px;

}

}

@media(max-width:768px){

.year-grid{

grid-template-columns:1fr;

gap:45px;

}

.year-card h2{

font-size:48px;

}

.year-card li{

font-size:14px;

line-height:1.8;

}

}

@media(max-width:480px){

.group-shows{

width:92%;

}

.year-card h2{

font-size:42px;

}

}

.group-shows{
    width:90%;
    max-width:1350px;
    margin:80px auto;
}

.year-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    column-gap:55px;
    row-gap:70px;
    align-items:start;
}

.year-card{
    width:100%;
}

.year-card h2{
    font-size:60px;
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
    margin-bottom:20px;
}

.year-card ul{
    padding-left:20px;
}

.year-card li{
    line-height:1.9;
    color:#555;
    margin-bottom:8px;
}

@media(max-width:992px){
    .year-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .year-grid{
        grid-template-columns:1fr;
    }
}