/* Meeting & Event Page Styles - Generic Classes */
.sar-content-1_a {
    padding: 0;
    font-family: 'Nunito', sans-serif;
}

.sar-title-1_a {
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.2;
}

.sar-text-1_a {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Intro Paragraph Section */
.sar-intro-paragraph-1_a {
    margin-bottom: 30px;
    text-align: center;
}

.sar-intro-text-1_a {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 100%;
    display: block;
}

/* Responsive adjustments for intro paragraph */
@media (max-width: 768px) {
    .sar-intro-text-1_a {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .sar-intro-text-1_a {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 5px;
    }
}

.sar-detail-1_a {
    margin: 0;
}

.sar-feature-1_a {
    background: transparent;
    border-radius: 12px;
    padding: 25px;
}

/* Responsive adjustments for feature section */
@media (max-width: 768px) {
    .sar-feature-1_a {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .sar-feature-1_a {
        padding: 15px;
    }
}

.sar-subtitle-1_a {
    color: #8b761c;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.sar-list-1_a {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.sar-list-1_a li {
    padding: 12px 0;
    padding-left: 30px;
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    display: block;
    text-align: left;
    margin: 0;
}

.sar-list-1_a li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b761c;
    font-weight: bold;
    font-size: 1.2rem;
    top: 12px;
}

/* Responsive Grid Layout */
@media (min-width: 576px) {
    .sar-list-1_a {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (min-width: 992px) {
    .sar-list-1_a {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile adjustments */
@media (max-width: 575px) {
    .sar-list-1_a li {
        padding: 10px 0;
        padding-left: 28px;
        font-size: 0.95rem;
    }
    
    .sar-list-1_a li:before {
        font-size: 1.1rem;
        top: 10px;
    }
}

.sar-detail-info-1_a {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
}

.sar-detail-content-1_a p {
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.6;
}

.sar-detail-content-1_a strong {
    color: #8b761c;
    font-weight: 600;
}

/* Column Divider Styles */
.sar-column-divider-1_a {
    position: relative;
}

.sar-column-divider-1_a:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background-color: #e9ecef;
}

@media (max-width: 768px) {
    .sar-column-divider-1_a:not(:last-child):after {
        display: none;
    }
}


/* Form Section Styles */
.sar-form-1_a {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.sar-form-1_a .sar-subtitle-1_a {
    color: #2c3e50;
    margin-bottom: 15px;
}

.sar-form-1_a .sar-text-1_a {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Form Wrapper Styles - Standard Embed */
.sar-form-wrapper-1_a {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
}

/* Override the fixed positioning for contained display */
.sar-form-wrapper-1_a > div[style*="position:fixed"] {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/* Ensure the inner form div takes full space */
.sar-form-wrapper-1_a > div[style*="position:fixed"] > div[data-fillout-id] {
    width: 100% !important;
    height: 100% !important;
}

/* Target the iframe specifically for standard embed */
.sar-form-wrapper-1_a iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .sar-form-wrapper-1_a {
        height: 60vh;
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .sar-form-wrapper-1_a {
        height: 60vh;
        min-height: 500px;
        max-height: none;
    }
}

@media (max-width: 480px) {
    .sar-form-wrapper-1_a {
        height: 70vh;
        min-height: 600px;
        max-height: none;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .sar-form-wrapper-1_a {
        height: 80vh;
        min-height: 700px;
        max-height: none;
    }
}

/* Seating Capacity Section Styles */
.sar-capacity-1_a {
    margin: 0;
}

.sar-capacity-item-1_a {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
}

.sar-capacity-image-1_a {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f9fa;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.sar-capacity-image-1_a:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

/* Responsive adjustments for capacity section */
@media (max-width: 768px) {
    .sar-capacity-item-1_a {
        padding: 30px;
    }
    
    .sar-capacity-image-1_a {
        height: 350px;
        object-fit: contain;
        background: #f8f9fa;
    }
}

@media (max-width: 480px) {
    .sar-capacity-item-1_a {
        padding: 20px;
    }
    
    .sar-capacity-image-1_a {
        height: 250px;
        object-fit: contain;
        background: #f8f9fa;
        max-width: 100%;
    }
}

.sar-gallery-1_a {
    margin: 40px 0;
}

/* Gallery Grid Row - Reduce gap between images */
.sar-gallery-1_a .row {
    margin-left: -5px;
    margin-right: -5px;
}

.sar-gallery-1_a .row > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

/* Gallery Grid Item */
.sar-gallery-item-1_a {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.sar-gallery-item-1_a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Gallery Image */
.sar-gallery-image-1_a {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.sar-gallery-image-1_a:hover {
    transform: scale(1.05);
}

/* Responsive Design for Gallery Grid */
@media (max-width: 768px) {
    .sar-gallery-image-1_a {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .sar-gallery-image-1_a {
        height: 180px;
    }
}

/* Breadcrumb Styles */
.sar-breadcrumb-a1_b {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.sar-breadcrumb-a1_b .breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}

.sar-breadcrumb-a1_b .breadcrumb-item a {
    color: #8b761c;
    text-decoration: none;
}

.sar-breadcrumb-a1_b .breadcrumb-item a:hover {
    color: #6b5a15;
    text-decoration: underline;
}

.sar-breadcrumb-a1_b .breadcrumb-item.active {
    color: #6c757d;
}

/* Tabbed Interface Styles */
.sar-meeting-tabs-1_a {
    margin-bottom: 0;
    border-bottom: 2px solid #e9ecef;
}

.sar-tab-buttons-1_a {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: -2px;
}

.sar-tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 8px 8px 0 0;
    color: #6c757d;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    position: relative;
    margin-bottom: -2px;
}

.sar-tab-btn:hover {
    background: #f8f9fa;
    color: #8b761c;
    border-bottom-color: #e9ecef;
}

.sar-tab-btn.sar-tab-btn-active {
    background: #f8f9fa;
    border-bottom-color: #8b761c;
    color: #8b761c;
    font-weight: 600;
    box-shadow: none;
}

.sar-tab-btn.sar-tab-btn-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #f8f9fa;
}

.sar-tab-content-wrapper-1_a {
    position: relative;
    min-height: 400px;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
    padding: 30px 20px;
    margin-top: 0;
}

.sar-tab-pane {
    display: none;
    animation: sar-fadeIn-1_a 0.3s ease-in-out;
}

.sar-tab-pane.sar-tab-pane-active {
    display: block;
}

@keyframes sar-fadeIn-1_a {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sar-content-1_a {
        padding: 40px 0;
    }
    
    .sar-detail-1_a {
        padding: 25px;
        margin: 20px 0;
    }
    
    .sar-title-1_a {
        font-size: 2rem;
    }
    
    .sar-gallery-item-1_a img {
        height: 200px;
    }
    
    .sar-tab-btn {
        min-width: 120px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .sar-tab-content-wrapper-1_a {
        min-height: 300px;
        padding: 25px 15px;
    }
    
    .sar-meeting-tabs-1_a {
        border-bottom: 2px solid #e9ecef;
    }
}
