/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
  text-decoration: none !important;
  color: white;
}

body {
    font-family: "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    text-decoration: none;
}
.drawer {
    position: fixed;
    top: 0;
    right: -300px; /* hidden off screen */
    width: 300px;
    height: 100vh;
    background-color: #fff;
    color: #333;
    padding: 20px 30px;
    box-sizing: border-box;
    box-shadow: -2px 0 8px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  /* Drawer open */
  .drawer.open {
    right: 0;
  }

  /* Drawer links */
  .drawer ul {
    list-style: none;
    padding: 0;
    margin-top: 120px;
  }
  .drawer ul li {
    margin: 20px 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
  }
  .drawer ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .drawer ul li a {
    color: #333;
    text-decoration: none;
    font-size: 28px;
    display: block;
  }
  .drawer ul li a:hover {
    color: #F05098;
  }

  /* Overlay when drawer is open */
  .overlay1 {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 300vh;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }
  .overlay1.active {
    display: block;
  }
@font-face {
    font-family: 'itronz';
    src: url('/static/itronz.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'moan';
    src: url('/static/MoanaRainyDemoRegular.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'stencil';
    src: url('/static/STENCIL.TTF') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'typo';
    src: url('/static/typo.otf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'helvetica';
    src: url('/static/Helvetica.otf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'roboto';
    src: url('/static/Roboto-Black.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'lato';
    src: url('/static/Lato-Black.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gon';
    src: url('/static/Gontserrat-Black.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Bold';
    src: url('/static/bold.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Artines';
    src: url('/static/Arthines.otf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'chico';
    src: url('/static/Chicharito.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Calton';
    src: url('/static/Caltons.otf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'senjal';
    src: url('/static/SenjalaraDemoRegular.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Glamor';
    src: url('/static/RomanGlamourDemoRegular.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
/* Discount Banner */
.discount-banner {
    background-color: #dc90a9;
    color: #333;
    text-align: center;
    padding: 10px;
    font-size: 17px;    
    font-weight: bold;
    font-family: 'typo', sans-serif;
}

.banner-message {
    display: none;
}

/* Header */
.header {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    width: 100%;
    /* Added background pattern as requested */
    background-image: repeating-radial-gradient(#f8f1f1ee 84%, #e6b9c2 90%);
    background-size: 50px 50px;
    position: sticky;
    top: 0;
    
    font-family: 'Glamor', sans-serif;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .logo img {
    height: 70px;
    margin-right: 150px;
    transform:scale(4);
}

/* Navbar */
.navbar {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 22px;
    transition: color 0.3s;
}

.navbar li a:hover {
    color: #FF69B4;
}

/* Icons */
.icons a {
    margin-left: 20px;
    color: #333;
    font-size: 17px;
    transition: color 0.3s;
}

.icons a:hover {
    color: #ff4081;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
}

/* Footer */
 form{
        padding-bottom: 15px;
        display: flex;
        align-items: center;
            
        border-bottom:1px solid #ccc;
        margin-bottom: 50px;
    
        }

    form .far{
        font-size:18px;
        margin-right:10px;
        margin-top:20px;

    }
    form input{
        width:100%;
        background-color: transparent;
        color:#402021;
        border:0;
        margin-top:20px;
        outline: none;

    }
    form button{
        background-color: transparent;
        border:0;
        outline: none;
        cursor: pointer;
        margin-top:20px;

    }
    form button .fas{
        font-size:16px;
        color: white;
        
        
    }
    .footer-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-text h6{
        font-size:70px;
         margin-top:40px;

    }
    .footer-text h5{
        font-size:150px;
         margin-top:120px;
         margin-bottom:20px;

    }
    
    .social-icons .fab{
        width:40px;
        height: 40px;
        border-radius: 50%;
        text-align: center;
        line-height: 50px;
        font-size: 20px;
        color:#402021;
        background: #fff8e7;
        margin-right: 15px;
        margin-top:-40px;
        

    }
    .social-icons .fab:hover{
        color:#F05098;
    }
    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 60px;
    }
    
    .newsletter-form input {
        padding: 10px;
        border: none;
        border-radius: 0px;
        font-size: 14px;
        outline: none;
       
    }
    
    .newsletter-form button {
        padding: 10px;
        background-color: white;
        color: black;
        border: none;
        border-radius: 0px;
        cursor: pointer;
        font-size: 24px;
        transition: background-color 0.3s ease;
       
    }
    
    .newsletter-form button:hover {
        background-color: black;
        color:white;
        font-size: 28px; 
        

    }
    
    
    .footer {
        width: 100%;
        background: black;
        color: white;
        padding: 50px 20px;

        font-size: 13px;
        line-height: 20px;

        bottom: 0;
        font-family: 'roboto', sans-serif;
        text-decoration: none;
    }
   
.footer-bottom h1 {
    margin-top: 30px;
    font-size: 44px;
    text-align: center;
}
.footer-bottom h3 {
    margin-top:150px;
    font-size: 244px;
    text-align: center;
    margin-bottom:100px;;
}
.footer h4 {
    font-size: 20px;
    width:fit-content;
    position:relative;
    margin-bottom: 20px;
    color: white;
    
}


    
    .row {
        width: 85%;
        display: flex;
        margin:auto;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap:20px;
        
    }
    .footer p {
        font-size: 15px;
        margin: 5px 0;
        font-weight: Bold;
        color:white;
        
        
    }
    
    
    
    .footer-logo{
        max-width: 80px;
        margin-bottom: 0px;
        transform:scale(1);
        

    }
    hr{
        width:90%;
        border:0;
        border-bottom: 1px solid#ccc;
        margin:20px auto;
    }
    .copyright{
        text-align:center;
    }
    .underline{
        width:100%;
        height:5px;
        background:#767676;
        border-radius: 3px;
        position: relative;
        top: 12px;
        left: 0;



    }
    .underline span{
        width:15px;
        height:100%;
        background: #fff;
        border-radius: 3px;
        position: absolute;
        top: 0;
        left: 10px;
        animation: moving 2s linear infinite;


    }
    @keyframes moving{
        0%{
            left:-20px;
        }
        100%{
            left:100%;
        }
    }
    
    
    
    
   
    
   
    .social-media{
        position: absolute;
        bottom: 70px;
        left: 93%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
    }
    
    .social-media a {
        color: green;
        font-size: 95px;
        transition: color 0.3s ease;
    }
    
    .social-media a:hover {
        color: #9ffd32; /* Change to your preferred hover color */
    }

/* Responsive - show hamburger at 768px and below */
@media (max-width: 768px) {
    .navbar {
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        display: none;
        gap: 20px;
        padding: 20px;
        z-index: 999;
    }

    .navbar.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}


  /* Mobile */
  @media (max-width: 600px) {
    .newsletter-form {
      flex-direction: column;
      gap: 10px;
    }
  
    .newsletter-form button {
      padding: 12px;
    }
  }

            .appointment-btn {
                background-color: #FF69B4;
                color: #fff;
                padding: 12px 47px;
                border-radius: 10px;
                text-decoration: none;
                font-weight: 600;
                font-size: 25px;
                box-shadow: 0 4px 16px rgba(255,64,129,0.10);
                transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
                border: none;
                outline: none;
                letter-spacing: 1px;
                display: inline-block;
            }
            .appointment-btn:hover {
                background-color: #ff4081;
                color: #fff;
                transform: translateY(-2px);
                box-shadow: 0 6px 24px rgba(255,64,129,0.20);
                text-decoration: none;
            }
            .appointment-btn:active {
                transform: scale(0.97);
                box-shadow: 0 3px 8px rgba(255,64,129,0.10);
            }

/* 480px Responsive */
@media (max-width: 480px) {
    .discount-banner {
        padding: 8px 12px;
        font-size: 12px;
    }

    .header {
        height: 80px;
        padding: 12px 16px;

        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .header .logo {
        order: 1;
        margin-right: auto;
        margin-left:40px;
        display: flex;
        align-items: center;
    }

    .header .logo img {
        height: 36px;
        transform: scale(4.5);
    }

    .appointment-btn {
        padding: 10px 25px;
        font-size: 17px;
        order: 2;
        position: absolute;
        left: 52%;
        top: 50%;
        transform: translate(-40%, -50%);
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hamburger {
        order: 3;
        margin-left: auto;
        position: absolute;
        right: 22px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 101;
    }
    .hamburger div {
        width: 20px;
        height: 2.5px;
        margin: 3px 0;
    }

    .navbar {
        top: 80px;
        padding: 16px;
        gap: 12px;
    }

    .navbar li a {
        font-size: 16px;
    }

    .drawer {
        width: 100%;
        right: -100%;
    }

    .drawer.open {
        right: 0;
    }

    .drawer ul {
        margin-top: 80px;
    }

    .drawer ul li a {
        font-size: 18px;
    }
}



.footer {
    background: #dc90a9;
    color: #111;
    padding: 80px 40px 100px;
    font-family: "typo", sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns:1fr 1fr 1fr 1fr auto;
    gap: 40px;
    position: relative;
  }
  
  .footer-logo {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .footer-col h4 {
    margin-top: 25px;
    margin-bottom: 8px;
    font-size: 20px;
    color: #111;
    letter-spacing: 1px;
  }
  
  .footer-col p {
    font-size: 17px;
    line-height: 1.6;
    color: #111;
  }
  
  .hours {
    margin-top: 20px;
  }
  
  .footer-menu {
    list-style: none;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    gap: 14px;
    display: flex;
    flex-direction: column;
  }
  
  .footer-menu li {
    margin-bottom: 15px;
  }
  
  .footer-menu a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    letter-spacing: 1px;
    
  }
  
  .route-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #111;
    text-decoration: none;
    font-size: 14px;
  }
  
  .footer-social {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0f3d2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
  }
  
  .footer-bottom {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-bottom p {
    font-size: 12px;
    color: #aaa;
  }
  
  .footer-bottom-menu a {
    margin: 0 10px;
    font-size: 12px;
    text-decoration: none;
    color: #aaa;
  }
  
  .book-btn {
    padding: 14px 28px;
    background: #fff;
    color: #0b3b26;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
  }
  
  
  @media (max-width: 768px) {
  
    .footer {
      padding: 60px 30px 30px;
    }
  
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
  
    /* Move social icons to bottom */
    .footer-social {
      position: static;
      flex-direction: row;
      margin-top: 30px;
      grid-column: span 2;
    }
  
    .footer-social a {
      width: 40px;
      height: 40px;
      font-size: 16px;
    }
  
    /* Center menu column */
    .footer-menu li {
      margin-bottom: 12px;
    }
  
    /* Bottom section stacks */
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      margin-top: 60px;
    }
  
    .footer-bottom-menu {
      order: 2;
    }
  
    .book-btn {
      order: 1;
      margin-bottom: 15px;
    }
  
    .footer-bottom p {
      order: 3;
    }
  }
  @media (max-width: 480px) {
  
    .footer {
      padding: 50px 12px 20px;
      
    }
  
    /* Serial vertical footer */
    .footer-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-left: 20px;
    }
  
    .footer-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      margin-left:50px;
      margin-bottom: -70px;
      
      
      width: 100%;
     
    }
  
    .footer-col {
      width: 100%;
      display: block;
      margin-bottom: 8px;
      text-align: left;
      margin-left: 20px;
    }
    .footer-col h4 {
      margin: 18px 0 6px 0;
      font-size: 13px;
      margin-left: 20px;
    }
    .footer-col p,
    .route-link {
      font-size: 13px;
      margin: 0 0 3px 0;
      display: block;
      margin-left: 20px;
    }
  
    .footer-menu {
      text-align: left;
      padding-left: 0;
      margin: 16px 0 0 0;
      margin-left: 0px;
    }
    .footer-menu li {
      margin-bottom: 9px;
      display: block;
      margin-left: 20px;
    }
  
    .footer-social {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 10px;
      margin: 18px 0 0 0;
      margin-left: 20px;
    }
    .footer-social a {
      width: 34px;
      height: 34px;
      font-size: 15px;
      margin-left: 0;
    }
  
    /* Serial bottom section */
    .footer-bottom {
      margin-top: 38px;
      gap: 11px;
      flex-direction: column;
      align-items: flex-start;
      display: flex;
      width: 100%;
      margin-left: 20px;
    }
    .footer-bottom-menu {
      display: flex;
      flex-direction: column;
      width: 100%;
      gap: 7px;
      margin-left: 20px;
    }
    .footer-bottom-menu a {
      margin: 0;
      font-size: 11px;
      padding: 0;
      margin-left: 20px;
    }
    .book-btn {
      width: 100%;
      text-align: center;
      padding: 12px 0;
      margin: 0 0 6px 0;
      margin-left: 20px;
    }
    .footer-bottom p {
      font-size: 11px;
      text-align: left;
      margin: 0;
      margin-left: 20px;
    }
  }
    /* Footer 480px */
   

