body {
    margin: 0;
    padding: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    /* background-color: #dd3f00;
    background-color: #f0a472; */
    background-image: url(../Images/ChatGPT\ Image\ Apr\ 28\,\ 2025\,\ 03_39_36\ PM.png);
    background-attachment: scroll; /* Makes background fixed during scroll */
    background-size: cover; /* Cover entire screen without zooming */
    background-repeat: no-repeat; /* Don't repeat the background */
    background-position: center center; /* Center the background */;
    zoom: 80%;
    overflow-y: auto;
    overflow-x: auto;
} 
.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px auto;
    text-align: left;
    
}

.logo img {
    margin: 0;
}

nav {
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center;
    background-color: #9e4c08d8;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    
}

nav ul {
    flex: 1;
    text-align: right;
    margin-right: 20px;
    font-weight: bold;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin: 10px 20px;
}

nav ul li a {
    text-decoration: none;
    color : black;
    font-size: 20px;;
}

nav ul li a:hover {
    text-decoration: underline;
    color: #f79a0f7c;
    transition: 0.3s;
    width:100% ;
    height: 10px;
    position: relative;
}

article{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2rem;
}
 .Naturopathic_Treatment{
    background-color: rgba(255, 228, 196, 0.267);
    border-radius:50px ;
    
    padding: 10px 20px;
    margin: 30px 10px
}

.social-media img {
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
}

.social-media img:hover {
    transform: scale(1.15);

}

.Naturopathic_Treatment h1{
    text-align: center;
}

.Yoga_and_Meditation h1{
    text-align: center;
    border-radius: 50px;
}



.Yoga_and_Meditation{
padding: 10px 20px;
 margin: 30px 10px;
 background-color: rgba(255, 228, 196, 0.267);
 border-radius: 50px;

}


.Holistic_Therapies{
    background-color: rgba(255, 228, 196, 0.267);
    border-radius:50px ;
    padding: 10px 20px;
    margin: 30px 10px
}

.Holistic_Therapies h1{
    text-align: center;
}

.button_container {
    text-align: center;
    margin: 20px;
}


#button{
    background-color: #db6e1498;
    color: white;
    border: none;
    border-radius:20px ;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    transition: trasnform 0.3s ease color 0.3s ease ; 
}

#button::before{
    background-color: black;
    content: '';
    position: absolute;
    top: 0% ;
    left: 0%;
    width: 0%;
    height: 100%;
    z-index: 0;
    transition: width 0.4s ease ;
}


#button:hover::before{
    width: 100%;
}

#button:hover{
    color: white;
    transform: scale(1.1);
    transition: .3s;
}



#button span{
    position: relative;
    z-index: 1;
}


.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: #fffbe6;
    padding: 0;
    border-radius: 16px;
    max-width: 420px;
    width: 90vw;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
}
.btn container{
    text-align: center;
    margin: 20px;
}
#btn_1{
    background-color: #db6e1498;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease; 
}



#btn_1::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: black;
    z-index: 0;
    transition: width 0.4s ease;
}

#btn_1:hover::before{
    width: 100%
}

#btn_1:hover{
    color: white;
    transform: scale(1.1);
    transition: .3s;
}

#btn_1 span{
    position: relative;
    z-index: 1;
}
.btn_container_1 {
    display: flex;
    justify-content: center; /* Center horizontally */
      /* Center vertically (optional) */
    margin: 20px auto;
    text-align: center;
}


.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.12); /* Subtle overlay */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fffbe6;
    padding: 24px 18px 18px 18px;
    border-radius: 22px;
    box-shadow: 0 16px 40px 0 rgba(0, 30, 0, 0.18), 0 2px 8px rgba(0,0,0,0.10);
    width: 98%;
    max-width: 480px;      /* Increased max-width for a bigger form */
    min-width: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    animation: modalPop 0.45s cubic-bezier(.23,1.12,.72,.98);
    border: none;
    margin: 0 auto;        /* Center horizontally if needed */
}

.modal {
    /* ...existing code... */
    background: transparent;
    display: none;
}


.close-btn {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 2rem;
    color: #b86e1e;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2;
}
@keyframes modalPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .modal-content {
        max-width: 98vw;
    }
    .modal-content iframe {
        height: 250px !important;
    }
}


aside {
    margin-top: 100px;
    margin-bottom: 100px;
    background-color: rgba(175, 85, 44, 0.336);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    font-size: 30px;
}

aside a {
    color: rgb(192, 53, 35);
    
}

.phone a:hover {
    color: #c56220 ;
    transition: 0.3s;
}

.Contact {
    text-align: center;
    margin: 20px 0;
}

.visit-us-content {
    display: flex; /* Enable Flexbox */
    justify-content: space-around; /* Space out the items evenly */
    align-items: center; /* Align items vertically in the center */
    gap: 25px; /* Add spacing between items */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.visit-us-content address,
.visit-us-content .phone,
.visit-us-content .maps {
    flex: 1; /* Make each item take up equal space */
    max-width: 400px; /* Optional: Limit the width of each item */
    text-align: center; /* Align text to the left */
}


.visit-us-content iframe {
    width: 350px;
    height: 400px;
    border-radius: 15px; /* Add rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.visit-us-content iframe:hover {
    transform: scale(1.1); /* Scale up the map */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Enhance the shadow on hover */
}

@media (max-width: 900px) {
    .visit-us-content {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .visit-us-content iframe {
        width: 98vw;
        max-width: 340px;
        height: 220px;
    }
    .Naturopathic_Treatment,
    .Yoga_and_Meditation,
    .Holistic_Therapies {
        padding: 10px 5vw;
        margin: 20px 0;
    }
}
@media (max-width: 600px) {
  body {
    zoom: 100%; /* Prevents unwanted scaling on small screens */
    padding: 10px;
    overflow-x: hidden;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  nav ul {
    text-align: left;
    margin: 10px 0 0 10px;
  }

  nav ul li {
    display: block;
    margin: 8px 0;
  }

  nav ul li a {
    font-size: 18px;
  }

  .logo {
    width: 80px;
    height: 80px;
    margin-left: 10px;
  }

  article {
    font-size: 1.4rem;
  }

  .Naturopathic_Treatment,
  .Yoga_and_Meditation,
  .Holistic_Therapies {
    padding: 15px 10px;
    margin: 20px 0;
    border-radius: 30px;
  }

  #button,
  #btn_1 {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .visit-us-content iframe {
    width: 100%;
    height: 200px;
  }

  .visit-us-content {
    flex-direction: column;
    gap: 20px;
  }

  .modal-content {
    width: 95vw;
    padding: 16px;
    border-radius: 18px;
  }

  .btn_container_1 {
    flex-direction: column;
  }

  aside {
    font-size: 1.2rem;
    margin: 60px 0;
    padding: 10px;
  }

  .close-btn {
    font-size: 1.5rem;
    top: 4px;
    right: 8px;
  }
}
