@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
}

.header {
    background-color: #000000;
    padding: 30px 20px;
    text-align: center;
}

.logo {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
}

.main {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    line-height: 1.3;
}

.events-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-card {
    background: #fafafa;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    border: 1px solid #e0e0e0;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.event-image-container {
    flex: 0 0 350px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 20px;
}

.event-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.event-date {
    color: #666666;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
    line-height: 1.3;
}

.event-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: auto;
}

.event-price-container {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-price {
    font-size: 20px;
    font-weight: 700;
    color: #cc0000;
    text-align: right;
    letter-spacing: 0.5px;
}

.buy-button {
    display: inline-block;
    background-color: #cc0000;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    align-self: flex-end;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-button:hover {
    background-color: #a00000;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}

@media (max-width: 900px) {
    .event-image-container {
        flex: 0 0 280px;
    }
    
    .event-image {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px;
    }
    
    .logo {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .main {
        padding: 40px 20px;
    }
    
    .title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-image-container {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .event-image {
        width: 100%;
        height: 280px;
        object-fit: cover;
        padding: 0;
    }
    
    .event-content {
        padding: 25px;
    }
    
    .event-name {
        font-size: 26px;
    }
    
    .buy-button {
        width: 100%;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
}

.header {
    background-color: #000000;
    padding: 30px 20px;
    text-align: center;
}

.logo {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
}

.main {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    line-height: 1.3;
}

.events-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-card {
    background: #fafafa;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    border: 1px solid #e0e0e0;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.event-image-container {
    flex: 0 0 350px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 20px;
}

.event-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.event-date {
    color: #666666;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
    line-height: 1.3;
}

.event-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: auto;
}

.event-price-container {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-price {
    font-size: 20px;
    font-weight: 700;
    color: #cc0000;
    text-align: right;
    letter-spacing: 0.5px;
}

.buy-button {
    display: inline-block;
    background-color: #cc0000;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    align-self: flex-end;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-button:hover {
    background-color: #a00000;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}

@media (max-width: 900px) {
    .event-image-container {
        flex: 0 0 280px;
    }
    
    .event-image {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px;
    }
    
    .logo {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .main {
        padding: 40px 20px;
    }
    
    .title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-image-container {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .event-image {
        width: 100%;
        height: 280px;
        object-fit: cover;
        padding: 0;
    }
    
    .event-content {
        padding: 25px;
    }
    
    .event-name {
        font-size: 26px;
    }
    
    .buy-button {
        width: 100%;
    }
}
