@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Carter+One&family=Prata&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.splash {
    background-image: url("images/organp.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    color: white;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-heading {
    font-family: "Prata", serif;
    color: #978c4d;
    font-weight: 700;
    font-size: 1.9rem;
    margin: 1rem 0;
}

.splash-image-left,
.splash-image-right {
    position: absolute;
    bottom: 800px;
    width: 30%;
    max-width: 300px;
    z-index: 1;
}

.splash-image-left {
    left: 20px;
}

.splash-image-right {
    right: 20px;
}

.splash-image-left img,
.splash-image-right img {
    width: 100%;
    height: auto;
}

.header-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1001;
    width: 100px;
}

.header-logo a {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-logo img {
    height: 50px;
    transform: scale(2);
}

.header-logo .logo-text {
    font-family: "Carter One", sans-serif;
    font-size: 1rem;
    color: white;
    margin-top: 15px;
    text-align: center;
    white-space: nowrap;
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    position: absolute;
    top: 80px;
    width: 100%;
    z-index: 10;
}

.navbar ul {
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
}

.navbar ul li {
    padding: 0 15px;
}

.navbar ul li a {
    font-family: "Bona Nova SC", sans-serif;
    color: #fff;
    font-size: 1.1rem;
    padding: 8px 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: #978c4d;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002;
    padding: 12px;
    border-radius: 8px;
    background: rgba(151, 140, 77, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: #978c4d;
    transform: scale(1.05);
}

.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(151, 140, 77, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-logo {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.mobile-menu-logo .logo-placeholder {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #978c4d;
    font-weight: bold;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-logo .logo-text {
    font-family: "Carter One", sans-serif;
    font-size: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-menu-nav a {
    font-family: "Bona Nova SC", sans-serif;
    color: white;
    font-size: 1.4rem;
    text-transform: uppercase;
    padding: 15px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.mobile-menu-nav a:nth-child(1) { animation-delay: 0.3s; }
.mobile-menu-nav a:nth-child(2) { animation-delay: 0.4s; }
.mobile-menu-nav a:nth-child(3) { animation-delay: 0.5s; }
.mobile-menu-nav a:nth-child(4) { animation-delay: 0.6s; }

.mobile-menu-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.mobile-menu-nav a:hover::before,
.mobile-menu-nav a.active::before {
    left: 0;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    background: rgba(255, 255, 255, 0.9);
    color: #978c4d;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.splash-content {
    text-align: center;
    z-index: 10;
    margin-top: 120px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.splash-content h1 {
    font-family: "Prata", serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.white-section {
    background-color: white;
    padding: 50px;
    position: relative;
    z-index: 1;
}

.flex-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.flex-containerfooter {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.image-section img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.text-sections {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: auto;
    margin-bottom: 20px;
    margin-left: 40px;
    transform: translateY(-10%);
}

.text-section {
    margin: 10px 0;
    font-family: "Roboto", sans-serif;
    color: #333;
    line-height: 1.9;
}

.text-section p {
    margin: 0;
}

.watermark-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.watermark {
    margin: 10px 0;
    opacity: 0.3;
}

.watermark img {
    height: 700px;
    width: auto;
}

.slider {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 500px;
    overflow: hidden;
    background: #f8f8f8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slider-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: white;
    position: relative;
}

.slide-heading {
    padding: 20px 40px;
    color: #978c4d;
    font-family: "Prata", serif;
    text-align: center;
}

.slide-heading .spread {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.slide-heading h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    transition: color 0.9s ease;
}

.content {
    display: flex;
    gap: 40px;
    flex: 1;
    align-items: center;
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.text-sections {
    flex: 1;
    padding-right: 20px;
}

.text-section ul {
    list-style-type: none;
    padding-left: 0;
}

.text-section ul li {
    position: relative;
    margin: 10px 0;
    padding-left: 20px;
    color: #333;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    line-height: 1.8;
}

.text-section ul li::before {
    content: "\2022";
    color: #978c4d;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.content img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(151, 140, 77, 0.9);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 10;
}

.arrow:hover {
    background: #978c4d;
    transform: translateY(-50%) scale(1.1);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

.highlight {
    color: #978c4d;
}

.flex-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 100px;
}

.imgblock {
    flex: 0 0 auto;
    margin-right: 30px;
}

.imgblock img {
    width: auto;
    height: 600px;
    transform: translateY(-20%);
}

.textblock {
    flex: 1;
    text-align: left;
}

.boyd-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    transform: translateY(-30%);
}

.boyd-intro,
.content-block,
.name {
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
}

.name h2 {
    color: #978c4d;
}

.blue {
    color: #978c4d;
}

.footer {
    background-color: #978c4d;
    color: #fff;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.footer-navbar {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-navbar ul {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-navbar li {
    padding: 0 10px;
}

.footer-navbar a {
    color: #fff;
    text-decoration: none;
    font-family: "Bona Nova SC", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer-navbar a:hover {
    opacity: 0.8;
}

.footer-navbar .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.footer-navbar .logo img {
    height: 50px;
    margin-bottom: 5px;
}

.footer-navbar .logo-text {
    font-family: "Carter One", sans-serif;
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
    white-space: nowrap;
}

body.no-scroll {
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .navbar {
        display: none;
    }

    .splash {
        height: 50vh;
    }

    .splash-content {
        margin-top: 80px;
        padding: 0 20px;
    }

    .splash-content h1 {
        font-size: 2.5rem;
    }

    .splash-image-left,
    .splash-image-right {
        bottom: 10px;
        width: 25%;
        max-width: 200px;
    }

    .splash-image-left img,
    .splash-image-right img {
        display: block;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .slider {
        min-height: 600px;
    }

    .slide {
        padding: 20px;
    }

    .slide-heading .spread {
        gap: 10px;
    }

    .slide-heading h2 {
        font-size: 1.5rem;
    }

    .content {
        flex-direction: column;
        padding: 20px;
    }

    .content img {
        max-width: 100%;
        height: auto;
    }

    .arrow {
        font-size: 1.2rem;
        padding: 10px;
    }

    .left-arrow {
        left: 10px;
    }

    .right-arrow {
        right: 10px;
    }

    .flex-container {
        flex-direction: column-reverse;
        align-items: center;
        margin-right: 0;
    }

    .image-section img {
        display: none;
        max-width: 100%;
        height: auto;
    }

    .text-sections {
        margin-left: 0;
        transform: none;
    }

    .text-section {
        font-size: 14px;
        line-height: 1.6;
    }

    .flex-containerfooter {
        flex-direction: column-reverse;
        align-items: center;
        padding: 20px;
    }

    .imgblock img {
        width: 100%;
        height: auto;
        transform: none;
    }

    .boyd-title {
        font-size: 1.4rem;
    }

   .footer-navbar ul {
        flex-direction: column;
        gap: 20px;
    }

    .footer-navbar .logo {
        order: -1;
        margin-bottom: 20px;
    }

    .mobile-menu-nav a {
        font-size: 1.2rem;
        min-width: 280px;
    }
}

@media screen and (max-width: 480px) {
    .splash-content h1 {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.2rem;
    }

    .text-section {
        font-size: 12px;
    }

    .boyd-title {
        font-size: 1.2rem;
    }

    .mobile-menu-nav a {
        font-size: 1.1rem;
        min-width: 220px;
        padding: 10px 25px;
    }

    .mobile-menu-logo .logo-placeholder {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .mobile-menu-logo .logo-text {
        font-size: 1.2rem;
    }

    .slider {
        min-height: 500px;
    }

    .slide-heading h2 {
        font-size: 1.2rem;
    }

    .content {
        padding: 10px;
    }
}