:root {
    --burgundy: #400010;
    --burgundy-dark: #2B000B;
    --burgundy-light: #550015;
    --cream: #F5DEB3;
    --gold: #FFD700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--burgundy);
    z-index: 1000;
    transition: 0.3s;
}

.header-content {
    padding: 20px;
    text-align: center;
}

.site-title {
    color: var(--gold);
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5),
                 3px 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.site-subtitle {
    color: var(--gold);
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 300;
}

.nav-container {
    border-top: 1px solid rgba(245, 222, 179, 0.3);
    padding: 15px 0;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    padding: 8px 16px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.nav-links a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.5s;
    z-index: -1;
}

.nav-links a:hover {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.nav-links a:hover:before {
    left: 0;
}

.nav-links a.active {
    background: var(--burgundy-light);
    color: var(--gold);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    position: relative;
}

.nav-links a.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.hamburger {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 100;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--cream);
    margin: 5px;
    transition: all 0.3s ease;
}

.parallax {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 170vh; /* Changed back to full viewport height */
    background-image: url('page-background.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.content {
    position: relative;
    background: transparent;
    margin-top: 180px; /* Keep this to maintain space below header */
    flex: 1;
    padding: 0 20px;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    min-height: calc(100vh - 600px);
    margin: 20px auto;
    max-width: 1400px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.body-text-container {
    width: 100%;
    margin: 0 auto 40px auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* margin-bottom: 400px;  Add space between content blocks */
    margin-bottom: 40px; /* or 0 */
}

.blocks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 20px 0;
    flex-wrap: wrap;
    /* margin-bottom: 400px;  Add space after blocks */
    margin-bottom: 40px; /* or 0 */
}

.block {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.footer {
    background: var(--burgundy);
    color: var(--cream);
    text-align: center;
    padding: 20px;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9em;
    color: var(--cream);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--cream);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}
.responsive-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .left-content {
    flex: 1 1 60%;
    min-width: 250px;
  }

  .left-content #WhoDetails {
    font-size: 1.4em;
    font-weight: bold;
  }

  .right-banner {
    flex: 1 1 35%;
    min-width: 200px;
    text-align: center;
  }

  .right-banner img.banner-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

.call-to-action {
    background-color: #004d66; /* Deep teal/blue background */
    color: #ffffff; /* White text */
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: auto;
  }

  .call-to-action p {
    margin: 0;
    font-size: 1.2em;
  }

  .call-to-action a.phone-link {
    color: #00d1b2; /* Accent color from your palette */
    font-weight: bold;
    font-size: 1.5em; /* Larger font for emphasis */
    text-decoration: none;
    display: inline-block;
    margin-left: 10px;
  }

  .call-to-action a.phone-link:hover,
  .call-to-action a.phone-link:focus {
    color: #ffffff; /* White text on hover for contrast */
    text-decoration: underline;
  }
.outline {
    color: #fff;
    text-shadow: #000 1px 1px 1px;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
    .site-title {
        font-size: 1.8em;
        padding: 0 40px;
    }

    .site-subtitle {
        font-size: 1em;
        padding: 0 20px;
    }

    .hamburger {
        display: block;
        top: 25px;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        background: var(--burgundy-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transition: 0.5s ease-in;
    }

    .nav-links.active {
        right: 0;
        background: var(--burgundy-light);
    }
    
    .nav-links a.active:after {
        left: 10%;
        right: 10%;
    }

    .hamburger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .line2 {
        opacity: 0;
    }

    .hamburger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .blocks-container {
        flex-direction: column;
    }

    .block {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .nav-links a {
        width: 80%;
        text-align: center;
        margin: 5px 0;
    }

    .nav-links a:before {
        background: var(--burgundy-light);
    }

    .content {
        margin-top: 160px;
        padding: 0 10px;
    }
    
    .content-wrapper {
        margin: 10px auto;
        padding: 20px;
    }
    
    .body-text-container {
        padding: 20px;
    }

    .responsive-section {
      flex-direction: column;
    }

    .right-banner {
      order: 2; /* Show banner above content on mobile */
    }
    .call-to-action a.phone-link {
      display: block;
      margin: 10px auto 0;
    }


}
