/* MonoMuse Dark Theme - style.css */

/* Global Styles */
* {
    padding: 0;
    margin: 0;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    line-height: 1.5;
    font-style: normal;
    background: #0b0b0c;
    color: #f5f5f7;
    box-sizing: border-box;
}

/* CSS Grid Layout */
.container {
    display: grid;
    grid-template-areas:
        'header header'
        'nav_bar nav_bar'
        'main main'
        'footer footer';
    min-height: 100vh;
    max-width: 960px;
    margin: 0 auto;
    padding: 10px 30px;
}

.header {
    grid-area: header;
    padding: 15px 0 5px 0;
}

.nav_bar {
    grid-area: nav_bar;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 0;
    gap: 4px;
}

.main {
    grid-area: main;
    padding: 10px 0;
}

.footer {
    grid-area: footer;
    border-top: 1px solid rgba(245, 245, 247, 0.12);
    padding: 18px 0;
    text-align: center;
    margin-top: 40px;
}

/* Logo */
#logo {
    width: 180px;
    display: block;
}

/* Navigation */
.nav_bar a {
    text-decoration: none;
    color: #f5f5f7;
    font-weight: 400;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 0.95rem;
}

.nav_bar a:hover {
    border-color: #4d5c3b;
}

/* Active nav link */
.active {
    color: #92ad70 !important;
}

/* hamburger icon */
.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #f5f5f7;
    background: none;
    border: none;
    padding: 5px 10px;
}

/* CTA button */
.cta {
    display: inline-block;
    background-color: #92ad70 !important;
    color: #0b0b0c !important;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    margin: 15px 0;
}

.cta:hover {
    background-color: #a8c282 !important;
    color: #0b0b0c !important;
}

/* Headings */
h2 {
    font-weight: 300;
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 8px;
    color: #92ad70;
}

h3 {
    font-weight: 300;
    font-size: 1.1rem;
    margin-top: 18px;
    margin-bottom: 5px;
}

/* Paragraphs */
p {
    font-weight: 100;
    font-size: 0.95rem;
    color: rgba(245, 245, 247, 0.85);
    max-width: 700px;
    margin-bottom: 8px;
}

/* Links inside main content */
.main a {
    color: #92ad70;
}

.main a:hover {
    color: #a8c282;
}

/* Lists */
ul {
    padding-left: 20px;
    margin: 10px 0;
}

li {
    font-size: 0.95rem;
    color: rgba(245, 245, 247, 0.85);
    margin-bottom: 8px;
}

/* Table Styling */
table {
    border-collapse: collapse;
    width: 100%;
    max-width: 700px;
    margin: 15px 0;
}

th {
    padding: 12px 10px;
    text-align: left;
    background-color: #92ad70 !important;
    color: #0b0b0c !important;
    font-weight: 400;
    width: fit-content;
}

td {
    padding: 10px;
    border-bottom: 1px solid rgba(245, 245, 247, 0.12);
}

tr:nth-child(even) {
    background-color: #1a1a1e;
}

/* Form Styling */
form {
    max-width: 450px;
    margin: 10px 0;
}

form label {
    display: block;
    margin-top: 12px;
    margin-bottom: 4px;
    font-weight: 300;
    font-size: 0.9rem;
    text-align: left;
}

form input,
form select {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(245, 245, 247, 0.2);
    border-radius: 6px;
    background-color: #1a1a1e;
    color: #f5f5f7;
    font-size: 0.95rem;
}

form input:focus,
form select:focus {
    outline: none;
    border-color: #92ad70;
}

form button,
.btn {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 18px;
    background-color: #92ad70 !important;
    color: #0b0b0c !important;
    border: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
}

form button:hover,
.btn:hover {
    background-color: #a8c282 !important;
}

form input[type="checkbox"] {
    width: auto;
    display: inline;
    margin-right: 5px;
}

/* Error messages for form validation */
.error-msg {
    color: #e85d5d;
    font-size: 0.8rem;
    margin-top: 2px;
    display: none;
}

/* Price display */
#priceDisplay {
    font-size: 1.2rem;
    font-weight: 400;
    color: #92ad70;
    margin-top: 15px;
}

/* Footer text */
.footer p {
    color: rgba(245, 245, 247, 0.5);
    text-align: center;
    font-size: 0.85rem;
    max-width: none;
}

/* read more / read less */
#longIntro {
    display: none;
}

#readLess {
    display: none;
}

#readMore,
#readLess {
    background: none;
    border: 1px solid #92ad70;
    color: #92ad70 !important;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 300;
    margin: 8px 5px 8px 0;
    display: inline-block;
}

#readMore:hover,
#readLess:hover {
    background-color: rgba(146, 173, 112, 0.15);
}

/* buy tickets */
#ticketForm {
    display: none;
}

.buy-btn {
    background-color: #92ad70 !important;
    color: #0b0b0c !important;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.85rem;
}

.buy-btn:hover {
    background-color: #a8c282 !important;
}

/* gallery */
.gallery {
    max-width: 700px;
    margin: 20px 0;
    position: relative;
}

.gallery img {
    width: 100%;
    max-width: 700px;
    border-radius: 8px;
    display: none;
}

.gallery img.gallery-active {
    display: block;
}

.gallery-controls {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.gallery-btn {
    background: none;
    border: 1px solid #92ad70;
    color: #92ad70 !important;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
}

.gallery-btn:hover {
    background-color: rgba(146, 173, 112, 0.15);
}

/* leaflet map */
#map {
    height: 350px;
    width: 100%;
    max-width: 700px;
    margin: 15px 0;
    border-radius: 8px;
    background: #1a1a1e;
}

/* Fix Leaflet tile backgrounds so they don't inherit dark theme */
.leaflet-tile,
.leaflet-control-zoom a,
.leaflet-popup-content-wrapper,
.leaflet-popup-content,
.leaflet-popup-tip {
    background: #fff !important;
    color: #333 !important;
}

.leaflet-control-attribution {
    background: rgba(255,255,255,0.7) !important;
    color: #333 !important;
}

.leaflet-control-attribution a {
    color: #333 !important;
    background: transparent !important;
}

/* video */
.video-container {
    max-width: 700px;
    margin: 15px 0;
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
    background: #1a1a1e;
}

/* confirmation */
.confirmation-box {
    border: 1px solid #92ad70;
    border-radius: 8px;
    padding: 25px;
    max-width: 500px;
    margin: 20px 0;
}

.confirmation-box h3 {
    color: #92ad70;
    margin-bottom: 10px;
}

/* mobile */
@media screen and (max-width: 650px) {
    .container {
        padding: 10px 15px;
        grid-template-areas:
            'header'
            'nav_bar'
            'main'
            'footer';
    }

    #logo {
        width: 50%;
    }

    .hamburger {
        display: block;
    }

    .nav_bar {
        flex-wrap: wrap;
    }

    .nav_bar a {
        display: none;
    }

    .nav_bar.responsive a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px;
    }

    .nav_bar .hamburger {
        display: block;
    }

    table {
        font-size: 0.8rem;
    }

    th, td {
        padding: 6px;
    }

    .video-container iframe {
        height: 250px;
    }

    #map {
        height: 250px;
    }
}