@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

head {
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding-top: 80px; /* To account for fixed navbar */
}

a {
    font-size: 1.25rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

p {
    text-align: center;
    color: black;
    font-size: clamp(12px, 2vw, 16px);
    margin-top: 10px;
    font-family: Montseerrat, sans-serif;
        -webkit-text-stroke: 0.2px #FFD700;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 1.5em;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
    padding: 20px;
}

.services-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;

  font-family: 'Montserrat', serif;
}

/* Each service card */
.service {
  border-bottom: 1px solid #eee;

  break-inside: avoid;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #FFCCFF;
}

/* Title */
.service h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}

/* Description */
.service p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

h3 {
    text-align: center;
    color: black;
    font-size: clamp(14px, 3vw, 18px);
    margin-top: 20px;
    font-family: Montserrat, sans-serif;
    -webkit-text-stroke: 0.2px #FFD700;
}

h2 {
    text-align: left;
    color: black;
    margin-top: 20px;
    font-size: clamp(14px, 2.5vw, 18px);
    font-family: Montserrat, sans-serif;
    -webkit-text-stroke: 0.2px #FFD700;
}

h1 {
    text-align: center;
    color: black;
    margin-top: -5px;
    text-indent: #000000 1px 1px 1px;
    font-size: clamp(24px, 6vw, 36px);
    font-family: playfair display, serif;
    -webkit-text-stroke: 0.2px #FFD700;
    
    /*text-shadow: 
        -1px -1px 0 #FFD700,  
        1px -1px 0 #FFD700,  
        -1px 1px 0 #FFD700,  
        1px 1px 0 #FFD700;
        */
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  background-color: #000;
  height: clamp(250px, 60vw, 400px);
  width: 100%;
  overflow: hidden;
}

.mySlides img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

/* Content grid for slideshow and text */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 5vw, 100px);
  margin: 20px auto;
  padding: 0 15px;
  max-width: 1400px;
  width: 100%;
}


@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-content {
    max-width: 95%;
    padding: 10px;
  }
  .about-content h2 {
    text-align: center;
  }
  .about-content img {
    width: 100%;
    max-width: 100%;
  }
  .services-content {
    grid-template-columns: 1fr;
  }
  .contect-centent {
    max-width: 95%;
    padding: 20px;
  }
}

@media (min-width: 1200px) {
  .services-content {
    column-count: 3;
  }
}

.left-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.right-column {
  display: flex;
  align-items: center;
}

.right-column h2 {
  margin: 0;
  line-height: 1.6;
}

/* Hide the images by default */
.mySlides {
  display: none;
  text-align: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: clamp(12px, 3vw, 16px);
  color: white;
  font-weight: bold;
  font-size: clamp(18px, 4vw, 30px);
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  text-shadow: #717171 1px 1px 2px;
  font-size: clamp(12px, 2vw, 16px);
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: clamp(10px, 1.5vw, 12px);
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #ff23cf;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  outline: #4b002e 1px solid;
}

.active, .dot:hover {
  background-color: #ff99e9;
  outline: #4b002e 1px solid;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

footer {
    margin-top: auto;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-around;
    width: 100%;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 20px;
  }
}

.footer-section {
    text-align: center;
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

/* Style the footer */
footer {
    text-align: center;
    padding: clamp(10px, 5vw, 5px);
    background-color: #f8bbd9;
    color: white;
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    outline: black 0.5px solid;
}

.footer-section h3 {
    margin-top: 0;
    font-size: clamp(14px, 2.5vw, 18px);
}

.footer-section p {
    font-size: clamp(12px, 2vw, 14px);
}

@media (max-width: 600px) {
    footer {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


/* Navbar styles */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px; /* fixed height */
    background-color: #f8bbd9;
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* key fix */
    padding: 0 20px 0 0; /* no left padding */
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    outline: black 0.5px solid;
}

/* Logo FIXED */
.logo {
    height: 100%;
    width: auto;
    display: block;
    margin: 0;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
}

.nav-links a {
    color: white;
    font-weight: bold;
    padding: 8px 12px;
    margin-top: 10px;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
}

/* Button */
.book-btn {
    background-color: #ff99e9;
    color: white;
    padding: 8px 16px;
    margin-top: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
}

/* Desktop */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }
}

/* Mobile */
@media (max-width: 768px) {

    #navbar {
        height: 60px;
        padding: 0 15px 0 0; /* keep left flush */
    }

    .logo {
        height: 100%;
    }

    .hamburger {
        display: block;
        order: 3;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f8bbd9;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    #navbar {
        height: 50px;
    }

    .logo {
        height: 100%;
    }
}

/* Social media section */
.social-links a {
    display: inline-block;
    background-color: #f8bbd9;
    color: white;
    padding: 10px 15px;
    margin: -10px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    outline: none;
}

.social-links a:hover {
    background-color: #ff99e9;
}

.social-section {
    text-align: center;
    margin: 20px 15px;
    padding: 0 15px;
}

.social-section h3 {
    color: black;
    -webkit-text-stroke: 0.2px #FFD700;
    margin: 0 0 20px 0;
    font-size: clamp(16px, 3vw, 20px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: clamp(25px, 3vw, 30px);
    flex-wrap: wrap;
}

.social-links a {
    color: black;
    -webkit-text-stroke: 0.2px #FFD700;
    font-weight: bold;
    font-size: clamp(14px, 2vw, 18px);
    padding: 8px 12px;
    border: 2px solid #ff99e9;
    border-radius: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #ff23cf;
    color: white;
    -webkit-text-stroke: 0.2px #FFD700;
}
