/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #fefdf5 0%, #fef9e7 100%);
    background-attachment: fixed;
    color: #1a1a1a;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(244, 230, 161, 0.15), rgba(230, 208, 115, 0.1));
    backdrop-filter: blur(20px);
    padding: 24px 0;
    border-bottom: 2px solid rgba(230, 208, 115, 0.2);
    box-shadow: 0 2px 20px rgba(230, 208, 115, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-size: 28px;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.nav {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    padding: 12px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #f4e6a1, #e6d073);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #1a1a1a;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}





/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fefdf5 0%, #fef9e7 100%) !important;
    padding: 120px 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    padding: 0 40px;
}



.hero-image {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    height: 500px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 20px 60px rgba(0,0,0, 2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.hero-text h1 {
    font-size: 58px;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-text h1,
.hero-text p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 600px;
}

.hero-text p {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
    font-weight: 400;
    max-width: 480px;
}

/* Content Sections */
.section {
    padding: 80px 0;
}

/* Alternating section backgrounds */
.section:nth-child(even) {
    background: rgba(254, 253, 245, 0.4);
}

.section:nth-child(odd) {
    background: rgba(254, 249, 231, 0.3);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Shabbos Info Section */
.shabbos-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 249, 231, 0.6));
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    margin-bottom: 40px;
    border: 1px solid rgba(254, 249, 231, 0.3);
}

.shabbos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.shabbos-item {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(254, 253, 245, 0.6), rgba(254, 249, 231, 0.4));
    border: 1px solid rgba(254, 249, 231, 0.4);
}

.shabbos-item h3 {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.shabbos-item p {
    font-size: 16px;
    color: #666;
}

/* Personnel Cards */
.personnel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.personnel-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 249, 231, 0.6));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(254, 249, 231, 0.3);
}

.personnel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(254, 249, 231, 0.8));
}

.personnel-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4e6a1, #e6d073);
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid rgba(254, 249, 231, 0.5);
}

.personnel-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personnel-name {
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.personnel-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.personnel-bio {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Holiday Info */
.holiday-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 249, 231, 0.6));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    border: 1px solid rgba(254, 249, 231, 0.3);
}

.holiday-info h3 {
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.holiday-times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.time-item {
    background: linear-gradient(135deg, rgba(254, 253, 245, 0.8), rgba(254, 249, 231, 0.6));
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(254, 249, 231, 0.4);
}

.time-item strong {
    color: #1a1a1a;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 249, 231, 0.6));
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid rgba(254, 249, 231, 0.3);
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.contact-card p {
    color: #666;
    margin-bottom: 8px;
}

.contact-card a {
    color: #1a1a1a;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Map Container */
.map-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 249, 231, 0.6));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    height: 400px;
    border: 1px solid rgba(254, 249, 231, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Admin Styles */
.admin-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 249, 231, 0.6));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    border: 1px solid rgba(254, 249, 231, 0.3);
}

.admin-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(254, 249, 231, 0.6);
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e6d073;
    background: rgba(255, 255, 255, 0.95);
}

.btn {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #333, #1a1a1a);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Responsive Design */


/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .nav-container,
    .container {
        padding: 0 30px;
    }

    .hero-container {
        padding: 0 30px;
        gap: 60px;
    }

    .nav {
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Hide desktop nav */
    .nav {
        display: none;
    }

    /* Show hamburger */
    .mobile-menu-btn {
        display: flex;
    }

    /* Active mobile menu */
    .nav.mobile-active {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
        position: fixed;
        top: 70px; /* match header height */
        left: 0;
        right: 0;
        background: white;
        width: 100%;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        z-index: 9999;
    }

    .nav.mobile-active a {
        padding: 14px 0;
        font-size: 18px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

    .personnel-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .shabbos-info {
        padding: 30px 20px;
    }

    .logo {
        font-size: 22px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .section {
        padding: 60px 0;
    }

    .shabbos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .personnel-card,
    .contact-card,
    .admin-section {
        padding: 25px;
    }
}







