/* Base responsive setup */
*, *::before, *::after {
    box-sizing: border-box;
}

:root{
    --background-color:#f4e8e5;
    --text-color: #49241D;
    --box-color:rgb(248, 222, 225);
    
    /* Responsive spacing variables */
    --spacing-xs: clamp(5px, 1vw, 10px);
    --spacing-sm: clamp(10px, 2vw, 15px);
    --spacing-md: clamp(15px, 3vw, 25px);
    --spacing-lg: clamp(25px, 5vw, 40px);
    --spacing-xl: clamp(40px, 8vw, 60px);
}

/* Ensure images are responsive by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page{
    margin: 0;
    display:flex;
    flex-direction: column;
    padding: clamp(10px, 3vw, 20px);
    padding-top:clamp(10px, 5vw, 50px);
    min-height: 100vh; /* Ensures full viewport height */
}
.top_banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    margin: 20px auto;
    max-width: 1400px;
    padding: 0 clamp(10px, 3vw, 30px);
    width: 100%;
    gap: 10px;
}

.dropdown_container{
    position: relative;
    justify-self:start;
    font-family: "Montserrat", sans-serif;
    z-index: 1001;
    margin-left: clamp(30px, 5vw, 90px); 
}

.dropdown {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: clamp(32px, 3.5vw, 60px);
  height: clamp(24px, 2.5vw, 36px);
  cursor: pointer;
  background: none;
  border: none;
}
.dropdown span {
  display: block;
  height: clamp(1.5px, 0.3vw, 2.5px);
  width: 100%;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.dropdown:hover span {
  background-color: var(--text-color);
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--background-color);
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    top: 100%;
    left: 0;
}

.dropdown-content.show{
    display:block;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--text-color);
    color: white;
}

.logoImage{
    width: 30%;
    max-width: 200px;
    min-width: 80px;
    height: auto;
    margin: 5px;
}

.heroimage {
    width:100%;
    height:auto;
    display: block;
    
}

.logocontainer{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: clamp(15px, 4vw, 25px);
    margin-bottom: clamp(20px, 7vw, 100px);
    justify-self:center;
}


.logo{
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(18px,7vw,42px);
    color:var(--text-color);
    white-space: nowrap;
}

.button_container {
    justify-self: end;
}

.booking_button{
    text-align: center;
    padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2.5vw, 20px);
    border-width: 0;
    border-style: solid;
    border-color: var(--text-color);
    border-radius:15px;
    text-decoration:none;
    color:white;
    background-color:var(--text-color);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight:600;
    white-space:normal;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 80px;
}

.booking_button:hover {
    background-color: color-mix(in srgb, var(--text-color) 80%, black);
}

.booking-button:visited{
    color:var(--text-color);
}

ul{
    list-style-type:none;
}


<!--Area and Face-->
.service_detail_container{
    display:flex;
    gap: clamp(15px, 3vw, 20px);
    margin: clamp(10px, 3vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
}

.header{
    font-weight:bold
}
.price_info{
    display:flex;
    background-color: var(--box-color);
    gap: clamp(15px, 3vw, 20px);
    margin: clamp(10px, 3vw, 20px);
    padding: clamp(15px, 3vw, 25px);
    justify-content: space-between;
    color:var(--text-color);
    border-radius: 8px;
    flex-wrap: wrap;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: clamp(20px, 4vw, 40px) clamp(15px, 3vw, 30px);
  margin-top: clamp(40px, 8vw, 60px);
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: clamp(20px, 4vw, 30px);
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: clamp(16px, 2vw, 18px);
  color: #fff;
}

.footer-section p {
  margin: 8px 0;
  font-size: clamp(13px, 1.5vw, 14px);
  line-height: 1.6;
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding: 5px;
  border: 1px solid #555;
}

.footer-bottom p {
  font-size: clamp(12px, 1.5vw, 14px);
  color: #999;
}