/*
Theme Name: Pomp1
Theme URI: https://mysoltech.com
Author: MySol
Author URI: https://mysoltech.com
Description: WordPress blogging theme
Tags: blog, theme
Version: 1.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pomp1
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

body {
    font-family: 'Kosugi Maru', 'Arial Rounded MT Bold', Arial, sans-serif;
    background: #fff;
    margin: 0;
    color: #222;
}
.main-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 2rem 0 1rem 0;
    letter-spacing: 0.2em;
    color: #e94e77;
    text-shadow: 2px 2px 0 #fff, 4px 4px 0 #222;
}
.main-visual {
    display: block;
    margin: 0 auto 2rem auto;
    max-width: 90vw;
    border-radius: 12px;
    width: 800px;
    height: auto;
}
.main-btn-wrap {
    text-align: center;
}
.main-btn {
    background: #ffe066;
    border: 2px solid #222;
    border-radius: 12px;
    font-size: 1.2rem;
    padding: 0.8em 2em;
    box-shadow: 4px 4px 0 #e94e77;
    font-weight: bold;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.main-btn:hover {
    box-shadow: 2px 2px 0 #e94e77;
}
.event-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}
.individual-event-card {
    background: #EA616F;
    border: 2px solid #333;
    border-radius: 24px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    width: 90%;
    max-width: 600px;
    position: relative;
    margin-bottom: 60px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.individual-event-label {
    position: absolute;
    top: -2.4em;
    left: 1.5em;
    background: #ffe066;
    color: #333;
    font-weight: bold;
    padding: 0.6em 1.5em;
    border: 2px solid #333;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    font-size: 1.2rem;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    z-index: 10;
}
.individual-event-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5em 0;
}
.individual-event-info li {
    background: #EA616F;
    color: #fff;
    border-radius: 25px;
    padding: 0.5em 3em;
    font-size: 1.1rem;
    display: flex;
    gap: 1em;
    align-items: center;
    font-weight: bold;
    margin-bottom: 0.8em;
}
.individual-event-info li span {
    display: inline-block;
    background: #fff;
    color: #333;
    border-radius: 20px;
    padding: 0.3em 1em;
    font-size: 1rem;
    margin-right: 0.8em;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
    border: 1px solid #333;
}
.individual-event-map-frame {
    margin-top: 3rem;
    text-align: center;
    position: relative;
}
.individual-event-map-caption {
    margin-bottom: 0;
    font-size: 1rem;
    color: #333;
    background: #fff;
    display: block;
    padding: 0.5em 1.2em;
    font-weight: bold;
    border: 1px solid #333;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    margin-top: 0;
    width: fit-content;
    position: absolute;
    left: 16%;
    top: -16%;
    z-index: 10;
}
.individual-event-map-frame iframe,
.individual-event-map-frame img {
    border: 2px solid #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    width: 80%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}
.register-btn-wrap {
    text-align: center;
    margin: 2rem 0 3rem 0;
}
.register-btn {
    display: block;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    text-decoration: none;
    transition: all 0.3s ease;
}
.register-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
}
.register-btn img {
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}
.register-btn:hover img {
    transform: scale(1.05);
}
footer {
    /* background: #e94e77; */
    color: #fff;
    text-align: center;
    padding: 3rem 0 1rem 0;
    border-radius: 60% 60% 0 0 / 10% 10% 0 0;
    position: relative;
    margin-top: 4rem;
}
footer .footer-icons {
    margin: 1rem 0;
}
footer .footer-icons a {
    display: inline-block;
    margin: 0 0.5em;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
}
footer .rocket {
    position: absolute;
    right: 2rem;
    bottom: 2.5rem;
    width: 60px;
    height: auto;
}
@media (max-width: 600px) {
    .main-title { font-size: 1.5rem; }
    .event-section {
        margin-left: 10px;
        margin-right: 10px;
    }
    .individual-event-card { 
        padding: 1.5rem 1rem 1rem 1rem;
        max-width: 500px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .individual-event-label { 
        left: 1em;
        top: -2.2em;
        font-size: 1.1rem;
        padding: 0.5em 1.2em;
    }

    .individual-event-map-caption {
        left: 10%;
        top: -17%;
    }
    
    .individual-event-info li {
        font-size: 1rem;
        padding: 0.7em 1em;
    }
    .individual-event-info li span {
        font-size: 0.9rem;
        min-width: 70px;
    }
}

/* --- Custom Footer Styles --- */
.footer-background {
    background: #ff8686; /* fallback pink */
    /* background: url('path/to/your/background.png') no-repeat center center; */
    background-size: cover;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    padding: 40px 0 0 0;
    text-align: center;
}

.custom-footer-middle {
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    flex: 1;
    min-width: 200px;
}

.footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-office-title {
    font-size: 2.1rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.footer-office-hours {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 18px;
    opacity: 0.85;
}

.footer-phone-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    text-decoration: none;
    margin: 0 auto 10px auto;
}

.footer-phone-number {
    font-size: 2.8rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.footer-phone-arrow {
    font-size: 2.5rem;
    color: #fff;
    margin-left: 10px;
    font-weight: bold;
    display: inline-block;
    transform: translateY(2px);
}

.custom-footer-bottom {
    margin-top: 18px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom .footer-copyright {
    font-size: 0.95rem;
    color: #fff;
    opacity: 0.85;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .footer-background {
        max-width: 100% auto;
    }

    .register-btn img{
        max-width: 220px!important;
    }

    .footer-office-title {
        font-size: 1.3rem;
    }
    .footer-phone-number {
        font-size: 1.7rem;
    }
    .footer-phone-arrow {
        font-size: 1.5rem;
        margin-left: 0px;
    }
    .footer-content {
        padding: 25px 0 0 0;
    }
    .custom-footer-middle {
        margin-top: 18px;
        margin-bottom: 10px;
    }
}

