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

body {
    margin: 0;
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(to bottom, #f3b31d 0%, #fdedcf 100%);
    display: flex;
    flex-direction: column;
}
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 10vw 60px 10vw;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
.main-content-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.logo-section {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}
.logo {
    max-width : 220px;
    max-height: 220px;
}
.video-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.85);
    padding: 20px 10vw;
    font-size: 1rem;
    border-top: 2px solid #e3c7a0;
    width: 100vw;
    left: 0;
    box-sizing: border-box;
    position: relative;
}
.footer-left a {
    color: #7a5c2e;
    text-decoration: none;
    margin-right: 10px;
}
.footer-left a:hover {
    text-decoration: underline;
}
.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-deauville {
    max-width: 80px;
    height: auto;
}
.social-icon {
    width: 28px;
    height: 28px;
    transition: opacity 0.2s;
}
.social-icon:hover {
    opacity: 0.7;
}
.fixed-logo {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 1000;
    padding: 8px 14px;
}
.logo-sharing {
    max-width: 120px;
    height: auto;
}
.footer-sep {
    display: inline;
}
.event-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}
.event-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
}
.event-macaron {
    max-width: 200px;
    width: 100%;
    height: auto;
}
.main-content-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
	margin-bottom: 20px;
}

.main-content-row-txt {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 20px;
    margin: 20px auto 50px auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    font-size: 1.15rem;
    text-align: center;
    max-width: 600px;
    border: 1px solid #e3c7a0;
	text-transform: uppercase;
}
.vote-txt {
    display: block;
    font-size: 1.2em;
    margin-top: 8px;
    color: #000000;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.vote-info {
    display: block;
    font-size: 0.80em;
    margin-top: 8px;
    color: #5d5d5d;
    font-weight: 500;
    letter-spacing: 0.01em;
}

@media (max-width: 933px) {
    .main-content {
        padding: 0px 0vw 0px 0vw;
    }
    .event-logo {
        margin-top:10vw;
		max-width: 50vw;
    }
	.event-macaron {
		max-width: 40vw;
		margin-bottom:10vw;
	}
    .event-logo-wrapper {
        margin-bottom: 18px;
    }
    .main-content-row {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }
    .logo-section, .video-section {
        justify-content: center;
        margin-bottom: 0;
    }
    .video-section iframe {
        width: calc(100vw - 20px);
        max-width: 100%;
        margin: 0 10px;
        height: 220px;
        box-sizing: border-box;
        display: block;
        margin-bottom:50px;
    }
    footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        z-index: 999;
        padding: 12px 10px;
        border-top: 2px solid #e3c7a0;
        box-sizing: border-box;
        background: rgba(255,255,255,0.95);
    }
    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .footer-right {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        margin-top: 0;
        gap: 12px;
    }
    .footer-sep {
        display: none;
    }
}
