/* body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #23f18a;
    color: white;
}
/* header start */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #23f18a;
    z-index: 1000;
}

#menu-btn{
    font-size: 2.5rem;
    border-radius: .5rem;
    background: #eee;
    color:#842f36;
    padding: 1rem;
    cursor: pointer;
    display: none;
  }

  @media (max-width:768px){

      #menu-btn{
          display: initial;
          float: right;
      }

      .header .navbar{
          position: absolute;
          top:100%; right: 2rem;
          border-radius: .5rem;
          box-shadow: var(--box-shadow);
          width: 15rem;
          border: var(--border);
          background: #fff;
          transform: scale(0);
          opacity: 0;
          transform-origin: top right;
          transition: none;
      }

      .header .navbar.active{
          transform: scale(1);
          opacity: 1;
          transition: .2s ease-out;
      }

      .header .navbar a{
          font-size: 1.6rem;
          display: block;
          margin: 1rem;
      }
  }

  @media (max-width: 320px){

    html{
        font-size: 50%;
    }

    #menu-btn{
        display: initial;
        float: right;
    }
  }

  /* media queries end */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.headerlogo img {
    width: 200px;
    height: auto;
    max-width: 300px; 
    border-radius: 5px;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.nav-links {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 5px;
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

.nav-links a:hover {
    background-color: #fff;
    box-shadow: 0 12px 24px rgba(255, 41, 41, 1);
    color: #23f18a;
    border-radius: 5px;
    font-weight: bold;
}


/* header end */

/* about us start */

.about-us {
    padding: 50px 20px;
    text-align: center;
}

.about-us h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.about-content img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(255, 41, 41, 1);
}

.about-content p {
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: left;
}

/* about us end */

/* Why Athena Owl Tattoo start */

.why-athena-owl {
    padding: 50px 20px;
    background-color: #222;
    color: white;
    text-align: center;
}

.why-athena-owl h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 10px;
}

.why-athena-owl p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* why athena owl end */

/* How to get a tattoo start */

.how-to-tattoo {
    padding: 50px 20px;
    text-align: center;
}

.how-to-tattoo h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.tattoo-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tattoo-box {
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    text-align: center;
}

.tattoo-box img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 12px 24px rgba(255, 41, 41, 1);
}

.tattoo-box h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffcc00;
}

.tattoo-box p {
    font-size: 1rem;
    line-height: 1.6;
}

/* How to get a tattoo end */

/* Our Artist Start */

.our-artist {
    padding: 50px 20px;
    text-align: center;
}

.our-artist h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.artist-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.artist-box {
    background-color: #444;
    padding: 20px;
    border-radius: 20px;
    max-width: 300px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.artist-box img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
}

.artist-box:hover img {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(255, 41, 41, 1);
}

.artist-box h2 {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #ffcc00;
}

/* Our Artist end */

/* Our Art Start */

.our-art {
    padding: 50px 20px;
    text-align: center;
}

.our-art h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.art-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.art-box {
    width: 300px;
    height: 400px;
    perspective: 1000px;
}

.art-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.art-box:hover .art-box-inner {
    transform: rotateY(180deg);
    box-shadow: 0 12px 24px rgba(255, 41, 41, 1);
}

.art-box-front, .art-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.art-box-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.art-box-back img {
    width: 100%;
    height: 100%;
    transform: rotateY(180deg);
    object-fit: cover;
}

.art-box-back {
    background-color: #23f18a;
    color: White;
    transform: rotateY(180deg);
    padding: 20px;
}

.art-box-back p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: bold;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-content {
        position: relative;
    }

    .about-content,
    .tattoo-steps,
    .artist-gallery,
    .art-gallery {
        flex-direction: column;
    }

    .about-content p,
    .tattoo-box p,
    .artist-box h2,
    .art-box-back h2,
    .art-box-back p {
        text-align: center;
    }
}

/* Our Art end */


/* Image Gallery Button Start */

.image-gallery-btn-container {
    text-align: center;
    margin: 50px 0;
}

.image-gallery-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #212122;
    color: #23f18a;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.image-gallery-btn:hover {
    background-color: #23f18a;
    color: #fff;
    box-shadow: 0 12px 24px rgba(255, 41, 41, 1);
}

/* Image Gallery Button end */


/* General Heading Styles */
h1, h2 {
    border: 2px solid #fff;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Adjustments for Specific Sections */
.about-us h1,
.how-to-tattoo h1,
.our-artist h1,
.our-art h1 {
    margin-bottom: 40px; /* Larger spacing for section headings */
}

.tattoo-box h2,
.artist-box h2,
.art-box-back h2 {
  color: #fff;
    margin-bottom: 10px; /* Smaller spacing for smaller headings */
}


/* What Our Clients Say Start */

.clients-say {
    padding: 50px 20px;
    text-align: center;
    background-color: #23f18a;
    color: white;
}

.clients-say h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

.testimonial-container {
    display: flex;
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-box {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-content {
    display: flex;
    background-color: #1d97dd;
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    align-items: center;
}

.testimonial-content img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
}

.testimonial-details h2 {
    font-size: 1.5rem;
    color: #fff;
}

.testimonial-details p {
    font-size: 1rem;
    line-height: 1.6;
}

.client-testimonial {
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(255, 41, 41, 1); /* Standard shadow */
    transition: box-shadow 0.3s;
}

.client-testimonial:hover {
    box-shadow: 0 12px 24px rgba(255, 41, 41, 1); /* Enhanced shadow on hover */
}

@media (max-width: 768px) {
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-content img {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

/* What Our Clients Say end */


/* Contact Us Start */

.contact-us {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #23f18a;
    color: white;
}

.contact-details {
    flex: 1;
    max-width: 40%;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

.contact-details p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.map-container {
    margin-top: 20px;
    border: 2px solid #fff;
    border-radius: 10px;
    overflow: hidden;
}

.opening-hours {
    flex: 1;
    max-width: 40%;
    text-align: left;
}

.opening-hours h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

.opening-hours ul {
    list-style: none;
    padding: 0;
}

.opening-hours li {
    font-size: 1.2rem;
    padding: 10px 20px;
    margin-bottom: 10px;
    border: 2px solid #fff;
    background-color: #23f18a;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.opening-hours li:hover {
    background-color: #fff;
    color: black;
    border: 2px solid rgba(255, 41, 41, 1);
}

@media (max-width: 768px) {
    .contact-us {
        flex-direction: column;
    }

    .contact-details,
    .opening-hours {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Contact Us end */

/* Footer Start */

.footer {
    background-color: #23f18a;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left,
.footer-middle,
.footer-right {
    flex: 1;
    padding: 0 20px;
}

.footer-left h2,
.footer-middle h2,
.footer-right h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}

.footer-left p,
.footer-middle p,
.footer-right p {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-middle ul {
    list-style: none;
    padding: 0;
}

.footer-middle ul li {
    margin-bottom: 10px;
}

.footer-middle ul li a {
    color: #ffcc00;
    text-decoration: none;
}

.footer-middle ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        padding: 0;
        margin-bottom: 20px;
    }
}

/* Footer end */

/* Social Media Start */

.social-media {
    color: white;
    text-align: center;
}

.social-media h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #222;
    border-radius: 50%;
    padding: 10px;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icons a img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background-color: #fff;
}

/* Social Media end */

/* WhatsApp Chat start */

.whatsapp-icon {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 1000;
    background-color: transparent; /* Removes the background color */
    padding: 0; /* Removes padding around the icon */
    border-radius: 0; /* Removes any rounding */
 }

.whatsapp-icon img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.whatsapp-icon:hover {
    transform: translateY(-5px);
}

/* WhatsApp Chat start */

/* Go to Top Button Start */

#myBtn {
  display: none;
  position: fixed;
  bottom: 45px;
  left: 35px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #fff;
  color: black;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  border-radius: 50px;
}

#myBtn:hover {
  background-color: black;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 24px rgba(255, 41, 41, 1);
}

/* Go to Top Button Start */

/* Optional: Add some smooth scrolling to the entire page */
html {
    scroll-behavior: smooth;
}
