/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-content h2 {
    font-size: 3rem;
    color: white;
    margin: 0 0 1.5rem 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 0;
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 2rem auto;
        padding: 1.5rem 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Sections */
.section {
    padding: 4rem 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Content Blocks */
.content-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.content-block-image {
    flex: 1;
    min-width: 0;
}

.content-block-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-block-text {
    flex: 1;
    min-width: 0;
}

.content-block-text h2 {
    margin-top: 0;
}

.content-block-text p {
    color: #333;
}

@media screen and (max-width: 768px) {
    .content-block,
    .content-block.reverse {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Hire Section */
.hire-section {
    background: white;
}

.capacity-info {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: #F2F2F2;
    border-radius: 4px;
}

.capacity-info h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.capacity-info p {
    margin-bottom: 0.5rem;
}

.pricing-table {
    margin-top: 3rem;
    text-align: center;
}

.pricing-table h3 {
    margin-bottom: 0.5rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: #F2F2F2;
    border-radius: 4px;
    overflow: hidden;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.pricing-table th {
    background: #8C8177;
    color: white;
    font-weight: 400;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.hire-includes {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: #F2F2F2;
    border-radius: 4px;
}

.hire-includes h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .pricing-table {
        overflow-x: auto;
    }

    .pricing-table table {
        min-width: 500px;
    }
}

/* Market Section */
.market-section {
    background: #F2F2F2;
}

.market-vendors {
    margin-top: 3rem;
    text-align: center;
}

.market-vendors h3 {
    margin-bottom: 1rem;
}

.vendor-text {
    line-height: 2;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}

.vendor-text strong {
    color: #0D0D0D;
}

.market-contact {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 4px;
}

.market-contact h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Cafe Section */
.cafe-section {
    background: white;
}

.cafe-hosting {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: #F2F2F2;
    border-radius: 4px;
}

.cafe-hosting h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.cafe-schedule {
    margin-top: 3rem;
    text-align: center;
}

.cafe-schedule h3 {
    margin-bottom: 1.5rem;
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.host-card {
    background: #F2F2F2;
    border-radius: 8px;
    padding: 1.25rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.host-date {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #59573E;
}

.host-name {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.3;
}

@media screen and (max-width: 900px) {
    .hosts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .hosts-grid {
        grid-template-columns: 1fr;
    }
}

/* Events Section */
.events-section {
    background: #F2F2F2;
}

.weekly-classes {
    margin-top: 3rem;
}

.weekly-classes h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.schedule-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.schedule-table td:first-child {
    width: 120px;
    background: #8C8177;
    color: white;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.class-contacts {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid #ddd;
}

.class-contacts h3 {
    margin-bottom: 1.5rem;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-class {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #59573E;
}

.contact-name {
    font-size: 1rem;
    color: #333;
}

.contact-phone {
    font-size: 0.95rem;
    color: #8C8177;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: #59573E;
}

@media screen and (max-width: 900px) {
    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-contact {
        padding: 1.5rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .schedule-table td:first-child {
        width: 100px;
    }
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-main {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-main h2 {
    margin-bottom: 1rem;
}

.contact-main p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #333;
}

.booking-contact {
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    background: white;
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.booking-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8C8177;
}

.booking-name {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #59573E;
}

.booking-phone {
    font-size: 1.5rem;
    color: #0D0D0D;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.booking-phone:hover {
    color: #59573E;
}

/* Terms Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.modal-content {
    background: white;
    max-width: 800px;
    width: 100%;
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    margin: 2rem 0;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #0D0D0D;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.terms-content p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: #333;
}

.terms-content p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .modal {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
}
