:root {
  --sun: #ffb84d;
  --sky: #eaf8ff;
  --blue: #4aa3c7;
  --green: #7bbf74;
  --cream: #fff8ed;
  --white: #ffffff;
  --dark: #30424a;
  --shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* HERO */

.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.25),
                    rgba(255, 248, 237, 0.25)),
    url("img/bb-sunrise-house.jpg") center/cover no-repeat;
}

/* NAVIGATION */

.navbar {
  width: 100%;
  padding: 18px 7%;
  background: rgba(255, 255, 255, 0.21);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 100;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 110px;
  height: 65px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue);

  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.49),
    0 2px 8px rgba(255, 236, 236, 0.15),
    0 0 12px rgba(255, 255, 255, 0.25);
}
  
  
    /*0 1px 2px rgba(255, 255, 255, 0.8),
    0 2px 8px rgba(0, 0, 0, 0.15);*/

  /* Subtle Glow (turn ON if desired) */
  /* text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.8),
    0 2px 8px rgba(0, 0, 0, 0.15),
    0 0 12px rgba(74, 163, 199, 0.35); */


.logo-sub {
  font-size: 1rem;
  letter-spacing: 2px;

  /* Weight Options */
  font-weight: 600;   /* Normal */
  /* font-weight: 600; */   /* Semi Bold */
  /* font-weight: 700; */   /* Bold */

  /* Style Options */
  font-style: bold;
  /* font-style: italic; */

  color: var(--white);
  text-transform: uppercase;

  /* Shadow (recommended ON) */
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.7),
    0 2px 6px rgba(0, 0, 0, 0.12);

  /* Subtle Glow (turn ON if desired) */
  /* text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.7),
    0 2px 6px rgba(0, 0, 0, 0.12),
    0 0 10px rgba(123, 191, 116, 0.30); */
}

.menu {
  display: flex;
  gap: 24px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
}

.menu a:hover {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  border: none;
  background: var(--sun);
  color: white;
  font-size: 1.5rem;
  padding: 6px 12px;
  border-radius: 10px;
  cursor: pointer;
}

/* HERO TEXT */

.hero-content {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 7% 70px;
}

.hero-text {
  max-width: 680px;
  background: rgba(255, 255, 255, 0.88);
  padding: 45px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  font-size: 1.3rem;
}

.small-title {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

h1 {
  font-family: "Dancing Script", cursive;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--blue);
  }

.slogan {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--sun);
  margin: 18px 0;
}

.btn {
  display: inline-block;
  margin-top: 22px;
  background: var(--sun);
  color: white;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.btn:hover {
  background: var(--blue);
}

/* SECTIONS */

.section,
.intro {
  padding: 95px 7%;
}

.intro {
  text-align: center;
  background: white;
}

.intro h2,
.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue);
  text-align: center;
  margin-bottom: 16px;
}

.intro p,
.section-text {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.3rem;
}

.soft-section {
  background: var(--sky);
}

/* CARDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-content {
  padding: 24px;
}

.card h3,
.breakfast-box h3,
.info-box h3,
.rules-grid h3 {
  color: var(--dark);
  margin-bottom: 10px;
}

/* BREAKFAST */

.breakfast-box {
  max-width: 1050px;
  margin: auto;
  background: white;
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.breakfast-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breakfast-box div {
  padding: 35px;
}

.breakfast-box h3 {
  color: var(--green);
  margin-top: 15px;
}

/* NEARBY */

.info-box {
  max-width: 800px;
  margin: 32px auto 0;
  background: white;
  padding: 30px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  text-align: center;
}

/* RULES */

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.rules-grid div {
  background: white;
  padding: 30px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.rules-grid ul {
  padding-left: 20px;
}

/* CONTACT */

.contact-section {
  background:
    linear-gradient(rgba(255, 248, 237, 0.60), rgba(255, 248, 237, 0.60)),
    url("img/beach-sea.jpg") center/cover no-repeat;
}

.contact-box {
  max-width: 680px;
  margin: auto;
  background: white;
  padding: 35px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

/* FOOTER */

footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 32px 7%;
}

/* MOBILE */

@media (max-width: 780px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: 72px;
    right: 7%;
    width: 230px;
    background: white;
    padding: 22px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 16px;
  }

  .menu.active {
    display: flex;
  }

  .hero-text {
    padding: 30px;
  }

  .breakfast-box {
    grid-template-columns: 1fr;
  }

  .breakfast-box img {
    height: 260px;
  }

  .logo img {
    width: 50px;
    height: 50px;
  }

  .logo-main {
    font-size: 1.1rem;
  }

  .logo-sub {
    font-size: 0.65rem;
  }
}

/* ACTIVE MENU ITEM */

.menu a.current {
  color: var(--sun);
}

/* SOFT SCROLL ANIMATION */

.intro,
.section,
.card,
.breakfast-box,
.info-box,
.contact-box {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.js .intro,
.js .section,
.js .card,
.js .breakfast-box,
.js .info-box,
.js .contact-box {
  opacity: 0;
  transform: translateY(28px);
}

.js .intro.show,
.js .section.show,
.js .card.show,
.js .breakfast-box.show,
.js .info-box.show,
.js .contact-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   Demo Template Banner
============================== */

.demo-banner {
    position: fixed;
    top: -120px;
    left: 0;
    width: 100%;

    z-index: 9999;

    background: linear-gradient(
        90deg,
        rgba(0,234,255,.96),
        rgba(123,44,255,.96)
    );

    box-shadow: 0 6px 25px rgba(0,0,0,.25);

  opacity: 0;

transition:
    top .8s ease,
    opacity .8s ease;
}

.demo-banner.show {
    top: 0;
    opacity: 1;
}

.demo-banner-content {
    max-width: 1400px;
    margin: auto;

    padding: 14px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.demo-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.demo-btn {
    display: inline-block;

    padding: 12px 24px;

    border-radius: 999px;

    background: white;

    color: #222;

    text-decoration: none;

    font-weight: 700;

    transition: .25s;
}

.demo-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 22px rgba(255,255,255,.8);
}

@media (max-width: 768px){

.demo-banner-content{
    flex-direction:column;
    text-align:center;
}

}
.demo-close {
  border: none;
  background: rgba(255,255,255,0.18);
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}

.demo-close:hover {
  background: rgba(255,255,255,0.35);
  transform: scale(1.08);
}
.demo-close {
    flex-shrink: 0;
    margin-left: 10px;
}

.second-banner {
  background: linear-gradient(
    90deg,
    rgba(123,44,255,.96),
    rgba(0,234,255,.96)
  );
}
/* =========================================
   Floating Contact Card
========================================= */

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 300px;
  padding: 20px 18px 18px;
  z-index: 9998;

  border-radius: 22px;
  background: rgba(18, 24, 45, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 234, 255, 0.35);

  box-shadow:
    0 0 24px rgba(0, 234, 255, 0.28),
    0 14px 40px rgba(0, 0, 0, 0.35);

  color: #ffffff;

  opacity: 0;
  transform: translateY(35px);
  pointer-events: none;

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.floating-contact.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-contact h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.floating-contact p {
  margin-bottom: 14px;
  line-height: 1.45;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.contact-bubble-buttons {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.contact-bubble-buttons a {
  flex: 1;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  background: #ffffff;
  color: #222222;
  transition: 0.25s ease;
}

.contact-bubble-buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
}

.contact-languages {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 0.78rem;
  text-align: center;
  opacity: 0.85;
}

.contact-bubble-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;

  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;

  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.contact-bubble-close:hover {
  background: rgba(255, 255, 255, 0.30);
  transform: rotate(90deg);
}

@media (max-width: 600px) {
  .floating-contact {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .contact-bubble-buttons {
    flex-direction: column;
  }
}