* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.event-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.event-header {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #4aa9ff, #0066cc);
    color: white;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.event-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.event-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.event-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.event-image:hover {
    transform: scale(1.02);
}

.event-info {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.event-info h2 {
    color: #2c5f8a;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaeaea;
}

.event-info ul {
    list-style-type: none;
    margin: 20px 0;
}

.event-info li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.event-info li:before {
    content: "•";
    color: #4a90e2;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 10px;
}

.event-contact {
    text-align: center;
    padding: 20px;
    background: #e6f4ff;
    border-radius: 10px;
    margin: 30px 0;
}

.contact-btn {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 20px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

.contact-btn:hover {
    background: #004d99;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,102,204,0.4);
}

/* 홈으로 가는 뱃지 */
.home-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #2c5f8a, #1a3a5f);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
    min-width: 120px;
    text-align: center;
}

.home-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* 플로팅 뱃지 */
.floating-badge {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.floating-badge img {
    width: 200px;
    height: 70px;
    border-radius: 12%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.floating-badge img:hover {
    transform: scale(1.1) rotate(10deg);
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 25px;
}

.original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    position: relative;
}

.discounted-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6600;
}

.premium .discounted-price {
    color: #0066cc;
}

.highlight-text {
    color: #ff6600;
    font-weight: bold;
}
