body {
    font-family: 'Inter', system-ui, -apple-system, Arial, sans-serif;
    margin: 0;
    height: 100vh;
    background: #fff
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.section {
    height: 100vh; /* Full viewport height */
    text-align: center;
}

.animate {
    opacity: 0;
    transform: translateY(20px); /* For slide-up effect */
    transition: all 0.8s ease;
}

.animate.fadeIn {
    opacity: 1;
    transform: translateY(0);
}

.animate.slideUp {
    opacity: 1;
    transform: translateY(0);
}

/* Background colors for distinction */
.section-1 {
    display: flex;
    color: #fff;
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.container {
    text-align: center;
}

.footer {
    display: flex; /* Use flexbox to create a row layout */
    justify-content: space-between; /* Push left and right text to opposite sides */
    align-items: center; /* Align items vertically in the center */
    background-color: #ebebeb; /* Background color */
    color: #3a3a3a; /* Text color */
    padding: 20px; /* Add padding around the footer */
    padding-left: 80px;
    padding-right: 80px;
    font-size: 0.6em; /* Font size */
    box-sizing: border-box; /* Include padding in width calculation */
}

.footer p {
    margin: 0; /* Reset margin for <p> elements */
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-weight: 400;
    text-align: center;

}

.footer a {
    text-decoration: none;
    color: #3a3a3a;
    font-weight: 400;
}

.footer a:hover {
    text-decoration: none;
    color: #000000;
    font-weight: 400;
}

.footer p {
    color: #3a3a3a;
}


a {
    color: rgb(0, 136, 255);
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: rgb(30, 110, 244);
    font-weight: 600;
    text-shadow: 0 0 .3px currentColor;
}
h1 {
    color: #000;
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: Instrument Serif, Times New Roman, serif;
}

p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 25px;
}

.promo-text {
    color: #666;
    font-size: 1.0em;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpText 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes slideUpText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-1 img {
    width: 90%;
    max-width: 650px;
    opacity: 0;
    animation: fadeInImage 1.5s ease-out forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

/* Hamburger Menu */
.menu-icon {
    position: absolute;
    top: 0px;
    left: 20px;
    cursor: pointer;
    z-index: 11000;
}

.menu-icon .bar {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 6px auto;
    transition: all 0.3s ease-in-out;
}

.menu-icon.open .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-icon.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-icon.open .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Logo Header */
.logo-header {
    position: relative;
    text-align: center;
    margin-top: 20px;
}

.logo-container {
    max-width: 150px; /* Limit the size of the logo container */
    margin: auto auto; /* Center the logo container */
}

.logo-container .logo-image {
    width: 100%; /* Ensure the image fits the container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove inline spacing */
}

.logo-header br {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 70px;
    left: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
    z-index: 10000;
    opacity: 0; /* Start hidden */
    transform: translateY(-10px); /* Start slightly above */
    pointer-events: none; /* Prevent interaction when hidden */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth fade and slide */
}

.dropdown-menu.open {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Slide to its position */
    pointer-events: auto; /* Allow interaction */
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    margin-bottom: 10px;
}

.dropdown-menu li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: left;
}

.dropdown-menu li a:hover {
    background-color: #f0f0f0;
}
  
  @keyframes slideUpModal {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .noscroll {
    overflow: hidden;
    height: 100%;
  }

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        background: radial-gradient(circle,rgba(31, 31, 31, 1) 0%, rgba(20, 20, 20, 1) 50%, rgba(26, 26, 26, 1) 100%);
    }

    h1 {
        color: #fff;
    }

    p {
        color: #fff;
    }
    a {
        color: rgb(0, 145, 255);
        font-weight: 600;
    }
    .menu-icon .bar {
        background-color: #fff;
    }

    .dropdown-menu {
        background-color: #242424;
    }

    .dropdown-menu li a {
        color: #fff;
    }

    .dropdown-menu li a:hover {
        background-color: #4d4c4c;
        color: #fff; /* Invert text color */
    }
    
    #logo {
        content: url('images/walkerhome-logo-white.png');
    }

    p {
        color: #f5f5f5;
        margin-bottom: 25px;
    }
    
    .promo-text {
        color: #d1d1d1;
        margin-bottom: 25px;
    }

    .footer {
        background: transparent;
    }

    .footer a {
        text-decoration: none;
        color: #a6a6a6;
        font-weight: 400;
    }
    
    .footer a:hover {
        text-decoration: none;
        color: #b7b7b7;
        font-weight: 400;
    }
    
    .footer p {
        color: #a6a6a6;
    }
    
    
    a {
        color: rgb(0, 145, 255);
        font-weight: 600;
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }
    
    a:hover {
        color: rgb(92, 184, 255);
        font-weight: 600;
    }
}

/* Small screens */
@media (max-width: 480px) {
    p {
        font-size: 1em; /* Smaller font size */
    }

    .promo-text {
        font-size: 0.7em;
    }

    

}

/* Medium screens */
@media (min-width: 481px) and (max-width: 768px) {
    p {
        font-size: 1.2em; /* Medium font size */
    }

    .promo-text {
        font-size: 1.0em;
    }

    .footer {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
        padding: 20px; /* Reduce padding for smaller screens */
    }


    .footer p {
        font-size: 1em; /* Slightly reduce font size for mobile */
        line-height: 1.5;
    }
}

/* Medium screens */
@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    p {
        font-size: 1.2em; /* Medium font size */
    }

    .promo-text {
        font-size: 1.2em;
    }

    .footer {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
        padding: 20px; /* Reduce padding for smaller screens */
    }


    .footer p {
        font-size: 1.3em; /* Slightly reduce font size for mobile */
        line-height: 1.5;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .footer {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
        padding: 20px; /* Reduce padding for smaller screens */
    }

    .footer p {
        font-size: 1.3em; /* Slightly reduce font size for mobile */
        line-height: 1.5;
    }
}
/* Large screens */
@media (min-width: 769px) {
    p {
        font-size: 1.5em; /* Larger font size */
    }

    .promo-text {
        font-size: 1.2em;
    }
}