body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Palatino', serif;
    color: #5a3e36;
    text-align: center;
    text-decoration: none;
    border: none;
}

.hero-wrapper {
    position: relative;
    background-image: url('../IMG_0035.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(139, 30, 20, 0.7), rgba(229, 123, 66, 0.7));
    z-index: 1;
}

header {
    position: relative;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-content, .dropdown-submenu {
    z-index: 1001;
}

.hamburger {
    z-index: 1002;
}

/* Hero section */
.hero-section {
    position: relative;
    z-index: 2;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(139, 30, 20, 0.6));
    padding: 160px 0;
    text-align: center;
    overflow: hidden;
}

.hero-section h2, .hero-section p {
    animation: heroFadeIn 1.5s ease-out;
    text-shadow: 0 4px 4px 8px rgba(0, 0, 0, 0.6);
}

.hero-section h2 {
    font-size: 3.5em;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.3;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    text-shadow: 0 4px 4px 8px rgba(0, 0, 0, 0.6);
    animation: heroGlow 2s ease-in-out infinite;
}

.hero-section p {
    font-size: 1.4em;
    margin-bottom: 50px;
    color: #f8f9fa;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-style: italic;
    text-shadow: 0 2px 4px 8px rgba(0, 0, 0, 0.6);
}

.button-group {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeIn 1.5s ease-out 0.3s both;
}

.button-group .btn {
    background: linear-gradient(135deg, #8b4513, #6b3410);
    color: #ffffff;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.button-group .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.button-group .btn:hover {
    background: linear-gradient(135deg, #6b3410, #5a2e0a);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.button-group .btn:hover::before {
    left: 100%;
}

.college-image-section {
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    max-width: 1200px;
    text-align: center;
}

.college-image-section h2 {
    margin-bottom: 30px;
}

.college-image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.college-image-section img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.college-tagline {
    margin-top: 40px !important;
    clear: both;
    font-size: 20px;
    color: #5a3e36;
    font-weight: bold;
}

/* About section */
.about-section {
    padding: 60px 40px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1200px;
}

.about-section h1 {
    font-size: 2.6em;
    margin-bottom: 30px;
    color: #5a3e36;
}

.about-section p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 25px;
}

.about-section .map-container {
    margin: 40px 0;
    text-align: center;
}

.about-section .map-container iframe {
    border: 0;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Contact info */
.contact-info {
    margin: 40px 0;
    font-size: 1.2em;
    color: #555;
    text-align: left;
}

.contact-info h3 {
    color: #5a3e36;
    margin-bottom: 20px;
    text-align: left;
}

.contact-info p {
    margin-bottom: 15px;
    text-align: left;
}

/* Newsletter form */
.newsletter-form {
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 800px;
}

.newsletter-form h3 {
    margin-bottom: 25px;
    font-size: 2em;
    color: #5a3e36;
}

.newsletter-form input[type="email"] {
    padding: 15px;
    width: 80%;
    max-width: 400px;
    border: none;
    border-radius: 5px;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.newsletter-form input[type="submit"] {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    background-color: #e57b42;
    color: #fff;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.newsletter-form input[type="submit"]:hover {
    background-color: #d65a27;
}

/* Subscribe button */
.btn-subscribe {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    background-color: #e57b42;
    color: #fff;
    cursor: pointer;
    font-size: 1.2em;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #d65a27;
}

/* Footer and acknowledgment */
footer {
    background-color: rgba(90, 62, 54, 0.9);
    color: #fff;
    padding: 30px 0 10px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

footer p {
    margin: 0 0 10px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}

footer ul li a:hover {
    text-decoration: underline;
}

.acknowledgment-section {
    background-color: rgba(221, 221, 221, 0.9);
    color: #333;
    padding: 15px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.acknowledgment-section p {
    margin: 0;
    font-size: 1.1em;
}

/* Nav extras */
nav {
    display: flex;
    align-items: center;
}

.nav-list {
    margin-right: 20px;
}

.bible-icon {
    display: flex;
    align-items: center;
    margin-left: 15px;
    margin-right: 10px;
    position: relative;
    background-color: white;
    padding: 5px;
    border-radius: 50%;
}

.bible-icon::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: black;
}

.bible-icon img {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.bible-icon:hover img {
    transform: scale(1.1);
}

/* Video background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

/* Bible scroll section */
.bible-scroll-section {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    max-width: 1000px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.scroll-container {
    position: relative;
    width: 100%;
    padding: 30px;
    text-align: center;
}

.scroll-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../rs=w_1280.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0;
    animation: fadeInBackground 3s ease-in-out forwards;
    z-index: -1;
}

@keyframes fadeInBackground {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.scroll-content {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Georgia', serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.verse-image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 30%;
    height: auto;
    opacity: 0.3;
    z-index: 0;
}

.verse-text {
    font-size: 1.5em;
    line-height: 1.6;
    color: #5a3e36;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.verse-reference {
    font-size: 1.2em;
    font-weight: bold;
    color: #8b1e14;
    margin-top: 10px;
    display: block;
    position: relative;
    z-index: 1;
}

/* Search bar */
.search-bar-container {
    display: flex;
    align-items: center;
}

.search-bar-container input {
    display: none;
    padding: 10px 15px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 1em;
    transition: width 0.3s ease;
}

.search-bar-container button {
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    background-color: white;
    padding: 5px;
    border-radius: 50%;
}

.search-bar-container button:hover {
    transform: scale(1.1);
}

.search-bar-container button svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
    background-color: white;
    padding: 2px;
    border-radius: 50%;
}

.search-bar-container.active input {
    display: inline-block;
}

.search-bar-container input:focus {
    outline: none;
    border-color: #5a3e36;
}

/* Misc */
mark {
    background-color: yellow;
    padding: 2px;
}

.gtranslate_wrapper {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.gt_switcher_wrapper {
    transform: scale(0.8);
    transform-origin: top right;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-wrapper {
        background-position: top center;
        min-height: 50vh;
    }

    .hero-section h2 {
        font-size: 1.8em;
    }

    .hero-section p {
        font-size: 1em;
    }

    .button-group .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }

    /* Responsive subscribe button sizing */
    .btn-subscribe {
        display: block;
        margin: 10px auto;
        width: 80%;
    }

    .college-image-section, .about-section {
        padding: 30px 15px;
    }

    .contact-info {
        text-align: center;
    }

    .nav-list {
        margin-right: 0;
    }

    .bible-icon {
        position: absolute !important;
        top: 6px !important;
        right: 110px !important;
        z-index: 1010 !important;
    }

    .bible-icon::before {
        display: none;
    }

    .search-bar-container {
        position: absolute !important;
        right: 80px !important;
        top: 8px !important;
        z-index: 1010 !important;
    }

    .search-bar-container input {
        width: 150px;
    }

    .search-bar-container button,
    .bible-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #hamburger-menu {
        top: 8px !important;
        right: 38px !important;
        z-index: 1020 !important;
    }

    .bible-scroll-section {
        padding: 30px 15px;
    }

    .verse-text {
        font-size: 1.2em;
    }

    .verse-reference {
        font-size: 1em;
    }

    .verse-image {
        max-width: 25%;
    }

    .language-selector {
        position: absolute;
        right: 15px;
        top: 50px;
    }
}

.newsletter-form a.btn-subscribe,
a.btn-subscribe {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  background-color: #e57b42;
  color: #fff !important;
  font-size: 1.2em;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
  text-decoration: none !important;
  cursor: pointer;
}

.btn-subscribe,
.btn-subscribe:link,
.btn-subscribe:visited,
.btn-subscribe:hover,
.btn-subscribe:active,
.newsletter-form a.btn-subscribe:hover {
  text-decoration: none !important;
}

.newsletter-form a.btn-subscribe:hover,
a.btn-subscribe:hover {
  background-color: #d65a27;
}

a.btn-subscribe {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    background-color: #e57b42 !important;
    color: #fff !important;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none !important;
    cursor: pointer;
  }
  
  a.btn-subscribe:hover {
    background-color: #d65a27 !important;
    transform: translateY(-2px);
    text-decoration: none !important;
  }
  