/* ========== Basic / Reset ========== */
:root{
  --bg: #070707;
  --card: #0f0f10;
  --muted:#bfc3c6;
  --accent:#d4af37; /* gold accent */
  --primary:#e63946; /* strong red/pink */
  --cta:#0077b6; /* blue for phone badge */
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial}
body{background:#f4f3f2;color:#222;line-height:1.45}

/* ===== Topbar / Header ===== */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 20px;
  background:#111;
  color:#fff;
}
.logo{font-weight:800;font-size:20px;letter-spacing:0.5px}
.main-nav ul{list-style:none;margin:0;padding:0;display:flex;gap:8px;align-items:center}
.main-nav a{display:inline-block;padding:8px 12px;background:var(--primary);color:#fff;border-radius:6px;text-decoration:none;font-weight:600;font-size:13px}
.contact-block{text-align:right}
.contact-label{font-size:12px;color:#ddd}
.contact-phone{color:#fff;text-decoration:none;font-weight:700}

/* ===== Hero ===== */
.hero{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:360px;
  overflow:hidden;
  background:linear-gradient(180deg,#111 0%, #070707 100%);
  padding:40px 20px;
  color:#fff;
}
.hero-side{position:absolute;bottom:0;max-height:420px;opacity:0.98;user-select:none}
.hero-left{left:0;transform:translateX(-20px)}
.hero-right{right:0;transform:translateX(20px)}
.hero-center{position:relative;z-index:2;max-width:820px;text-align:center;padding:20px}
.hero-sub{letter-spacing:2px;color:#f6f6f6;margin:0 0 6px;font-weight:600}
.hero-title{font-size:48px;margin:0 0 12px;color:var(--accent);text-transform:uppercase;letter-spacing:1px}
.hero-badge{display:inline-block;padding:8px 14px;border-radius:8px;border:2px solid var(--accent);color:var(--accent);font-weight:700;margin-bottom:12px}
.hero-desc{color:#ddd;margin:12px 0 18px;font-size:18px}
.hero-cta{display:inline-flex;align-items:center;gap:12px;background:var(--primary);color:#fff;padding:12px 18px;border-radius:10px;text-decoration:none;font-weight:800}
.hero-cta .phone{background:var(--cta);padding:8px 12px;border-radius:6px;color:#fff;font-weight:700}

/* Offer bubble (circular) */
.offer-bubble{
 right:120px;top:40px;width:100px;height:100px;border-radius:30%;
  background:linear-gradient(180deg,#ff4b4b,#d42b2b);color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;font-weight:700;
  text-align:center;z-index:3;border:3px solid rgba(255,255,255,0.06)
}
.offer-bubble small{font-size:11px;opacity:0.9}
.offer-bubble strong{font-size:18px;margin:2px 0}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 20px;
    min-height: auto;
  }

  .hero-side {
    position: relative;  /* remove absolute so it flows normally */
    transform: none;     /* reset the translate */
    max-height: none;    /* allow it to scale */
    width: 100%;         /* fill screen width */
    opacity: 1;          /* make sure it's visible */
    margin-bottom: 15px; /* spacing before text */
  }

  .hero-side img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-center {
    max-width: 100%;
    padding: 10px;
  }

  .hero-title {
    font-size: 32px; /* smaller title for mobile */
  }
}
.hero-side {
  display: block !important;
  visibility: visible !important;
}

@media (max-width: 768px) {
  .hero-side {
    position: relative;
    width: 100%;
    max-height: none;
  }
}


/* ===== Main / Profiles list ===== */
.content{max-width:1100px;margin:30px auto;padding:0 16px}

/* profile card */
.profile-card{
  display:flex;
  gap:18px;
  background:linear-gradient(180deg,#0e0e10,#151515);
  border-radius:12px;
  overflow:hidden;
  align-items:stretch;
  box-shadow:0 6px 24px rgba(16,16,16,0.45);
  margin-bottom:18px;
  border-left:6px solid var(--accent);
  transition:transform .28s ease,box-shadow .28s ease;
}
.profile-card:hover{transform:translateY(-6px);box-shadow:0 12px 36px rgba(10,10,10,0.6)}

.profile-photo{
  width:200px;height:100%;object-fit:cover;flex-shrink:0;
  display:block;
}

/* profile body */
.profile-body{
  padding:20px 20px 18px;
  display:flex;flex-direction:column;justify-content:space-between;
}
.profile-title{margin:0 0 8px;color:var(--accent);font-size:20px}
.profile-text{margin:0 0 16px;color:#d8d8d8;font-size:15px;line-height:1.55}

/* meta row (age + buttons) */
.profile-meta{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.meta-left{color:#fff;font-weight:700}
.meta-actions{display:flex;gap:10px}

/* buttons */
.btn{display:inline-flex;align-items:center;gap:8px;padding:9px 14px;border-radius:8px;text-decoration:none;font-weight:700;font-size:14px}
.btn-call{background:#0b6fa6;color:#fff;border:2px solid rgba(255,255,255,0.03)}
.btn-wa{background:#25D366;color:#fff;border:2px solid rgba(255,255,255,0.03)}
.btn:hover{opacity:.95;transform:translateY(-1px)}



/* ===== Responsive ===== */
@media (max-width:980px){
  .hero-title{font-size:40px}
  .hero-side{max-height:340px}
  .offer-bubble{right:24px;top:18px}
  .profile-photo{width:200px}
}
@media (max-width:720px){
  .topbar{flex-direction:column;gap:12px;align-items:flex-start;padding:14px}
  .main-nav ul{flex-wrap:wrap}
  .hero{padding:30px 12px;min-height:420px}
  .hero-left,.hero-right{display:none}
  .hero-title{font-size:28px}
  .hero-desc{font-size:15px}
  .offer-bubble{display:none}

  .profile-card{flex-direction:column}
  .profile-photo{width:100%;height:200px}
  .profile-body{padding:16px}
  .meta-actions{justify-content:center;width:100%}
  .profile-meta{align-items:center}
}

/* small tweaks for accessibility */
a{outline-offset:3px}
a:focus{box-shadow:0 0 0 3px rgba(212,175,55,0.18)}
.card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop */
  gap: 15px;
  justify-content: center;
  width: 100%;
  max-width: none;
  padding: 0 10px;
}

.card {
  border: 2px solid gold;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-header {
  background-color: #222;
  color: #bbb;
  text-align: center;
  padding: 8px;
  font-weight: bold;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Wrap description + footer in one bottom section */
.card-bottom {
  margin-top: auto; /* pushes this whole section to bottom */
}

.card-description {
  padding: 8px;
  font-size: 14px;
  color: #021305;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 8px;
}

.card-footer h3 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: red;
}

.stars {
  color: gold;
  font-size: 13px;
}

/* 📱 Tablet/Mobile: Force 2 per row */
@media (max-width: 768px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.card-tag {
  background-color: #111;
  color: gold;
  text-align: center;
  padding: 8px;
  font-weight: bold;
  margin: 0;
}
.info-section {
  max-width: 900px; /* less wide */
  margin: 0 auto; /* center align */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 20px;
}

.info-box {
  background: #f9f9f9;
  border: 2px solid #ff0080;
  border-radius: 6px;
  padding: 12px 15px; /* smaller padding */
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.info-box h3 {
  font-size: 16px; /* smaller heading */
  font-weight: bold;
  color: #ff0080;
  margin-bottom: 6px;
}

.info-box p {
  font-size: 13px; /* smaller text */
  color: #333;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .info-section {
    grid-template-columns: 1fr;
  }
}
.text-section {
  max-width: 1100px;   /* makes it wide but not full screen */
  margin: 0 auto;     /* centers the section */
  padding: 40px 20px;
  text-align: center;
}

.text-section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #ff007f; /* pink tone */
  margin-bottom: 20px;
}

.text-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
  text-align: justify;
}
.event-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #fff;
  background-color: #0c0c0c; /* dark background */
}

.event-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.event-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.event-item {
  margin-bottom: 30px;
}

.event-item h3 {
  font-size: 20px;
  font-weight: bold;
  color: #ffb400; /* yellow highlight */
  display: inline-block;
  margin-bottom: 10px;
}

.icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  background-color: #ffb400;
  border-radius: 50%;
  position: relative;
  top: 2px;
}

.icon::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: solid #0c0c0c; /* same as background */
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.three-column-section {
  display: grid;
  grid-template-columns: 200px 1fr 200px; /* side images fixed, center flexible */
  gap: 20px;
  align-items: start;
  max-width: 1400px;
  margin: 40px auto;
}

.side-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-column img {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.center-column {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.center-column h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.center-column p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

@media (max-width: 992px) {
  .three-column-section {
    grid-template-columns: 1fr;
  }
  .side-column {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .side-column img {
    width: 150px;
  }
}
.tags-section {
  background-color: #ff0099; /* Pink background */
  padding: 40px 20px;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.tag {
  background-color: #4A4A3C; /* Green pill */
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-transform: lowercase;
  white-space: nowrap;
  cursor: default;
}

.tag:hover {
  background-color: #3e8e41; /* Slightly darker on hover */
}
.info-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
  background-color: #e8d8d8; /* background like screenshot */
  flex-wrap: wrap; /* allow wrapping on smaller screens */
  max-width: 1700px;
}

.info-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
  flex: 1 1 calc(33.33% - 20px); /* 3 columns on desktop */
  max-width: 350px;
  min-width: 250px; /* prevent too small columns */
}

.info-header {
  background-color: #ff69b4;
  color: white;
  font-weight: bold;
  padding: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-header .info-icon {
  font-size: 20px;
}

.info-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-box ul li {
  padding: 10px 15px;
  border-bottom: 1px solid #f48fb1;
  font-size: 16px;
  position: relative;
  padding-left: 28px;
}

.info-box ul li::before {
  content: "✔";
  color: #ff69b4;
  position: absolute;
  left: 10px;
  font-size: 16px;
}

.info-box ul li:last-child {
  border-bottom: none;
}

/* Mobile view */
@media (max-width: 768px) {
  .info-box {
    flex: 1 1 100%; /* Full width on small screens */
    max-width: 100%;
  }
}

.hotel-section {
    text-align: center;
    padding: 3px 0;
    background-color: #2e2e2e;
    color: white;
}

.hotel-section h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hotel-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hotel-gallery .hotel {
    position: relative;
    border: 2px solid red;
    overflow: hidden;
    width: 250px;
}

.hotel-gallery img {
    display: block;
    width: 100%;
    height: auto;
}

.hotel-name {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: white;
    color: red;
    font-weight: bold;
    font-family: 'Georgia', serif;
    font-size: 14px;
    padding: 2px 5px;
}

.other-hotels {
    text-align: center;
    padding: px 10px;
    background-color: #2e2e2e;
    color: white;
}

.other-hotels h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
	margin-top: 7px;
}

.hotel-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
	margin-bottom: 7px;
}

.hotel-buttons a {
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    color: #000;
    background: linear-gradient(to right, #4361ee, #fca311);
    border-radius: 3px;
    font-size: 14px;
    display: inline-block;
}

@media (max-width: 768px) {
    .hotel-gallery {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hotel-gallery .hotel {
        width: calc(50% - 10px); /* Two per row with small gap */
    }
}

.wide-info-section {
    max-width: 1200px;
    margin: 30px auto;
}

.wide-row {
    display: flex;
    align-items: center;
    background: #f8f4f1;
    border: 2px solid #8c6a5d;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 15px;
    gap: 20px;
}

.wide-row.reverse {
    flex-direction: row-reverse;
}

.wide-image {
    flex: 1;
}

.wide-image img {
    width: 100%;
    border-radius: 5px;
    display: block;
}

.wide-text {
    flex: 1;
    font-family: serif;
    color: #4a2f23;
}

.wide-text h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3c1e14;
}

.wide-text p {
    font-size: 15px;
    line-height: 1.6;
}
@media (max-width: 768px) {
  .wide-row {
    flex-direction: column; /* stack image above text */
  }

  .wide-row.reverse {
    flex-direction: column; /* also stack for reverse layout */
  }

  .wide-image, 
  .wide-text {
    flex: 1 1 100%;
  }
}


.site-footer {
    background-color: #d9043d; /* Red Footer */
    color: white;
    text-align: center;
    padding: 20px 10px;
}

.footer-links {
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-social {
    margin: 15px 0;
}

.footer-social a {
    display: inline-block;
    margin: 0 5px;
}

.footer-social img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

.footer-bottom {
    font-size: 14px;
    color: white;
    margin-top: 10px;
}
.services-section-alt {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.left-image img {
  height: 350px; /* reduce height */
  object-fit: cover; /* ensures the image doesn’t stretch weirdly */
}

.right-card {
    flex: 1.6; /* narrower card */
    background: white;
    position: relative;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px; /* less vertical gap */
}

.right-card .watermark {
    position: absolute;
    inset: 0;
    background: url("your-watermark-image.png") center/contain no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.service-box {
    position: relative;
    z-index: 1;
    text-align: center;
}

.service-box h3 {
    color: #e600a0;
    margin-top: 8px;
    font-size: 16px;
}

.service-box p {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

.service-box .icon {
    font-size: 26px;
    display: block;
    margin-bottom: 5px;
}
@media (max-width: 768px) {
  .services-section-alt {
    flex-direction: column; /* stack image above card */
  }

  .left-image img {
    height: auto;       /* allow natural height */
    width: 100%;        /* fill full width */
    object-fit: cover;  /* keep good crop */
  }

  .right-card {
    grid-template-columns: repeat(2, 1fr); /* fewer columns for small screens */
    padding: 20px;
  }
}
