/**
 * @file
 * Subtheme specific CSS.
 */

/* Fade-up Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initial state - hidden */
.fade-up,
.fade-up-delay-1,
.fade-up-delay-2,
.fade-up-delay-3 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Animated state when in view */
.fade-up.animate {
  animation: fadeUp 0.8s ease-out forwards;
}

.fade-up-delay-1.animate {
  animation: fadeUp 0.8s ease-out 0.2s forwards;
}

.fade-up-delay-2.animate {
  animation: fadeUp 0.8s ease-out 0.4s forwards;
}

.fade-up-delay-3.animate {
  animation: fadeUp 0.8s ease-out 0.6s forwards;
}

/* Black Footer Styles */
.site-footer-black {
  background-color: #efede4!important;
  color: #333333;
  padding: 60px 0 0 0;
  margin-top:  0px;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding:  0px;
}
/* Coming Soon navigation items */
.tbm-link-container {
  position: relative;
}

.coming-soon-badge {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #C3922E;
  color: #fff;
  font-family: 'brandontext', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1001;
}

.nav-coming-soon:hover > .tbm-link-container .coming-soon-badge {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.tbm-item.nav-coming-soon > .tbm-link-container > .tbm-link {
  cursor: default !important;
}

.coming-soon-badge--sub {
  top: auto;
  bottom: calc(100% + 4px);
  font-size: 9px;
  padding: 2px 7px;
  transform: translateX(-50%) translateY(4px);
}

.nav-coming-soon-sub:hover > .tbm-link-container .coming-soon-badge {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.tbm-item.nav-coming-soon-sub > .tbm-link-container > .tbm-link {
  cursor: default !important;
  opacity: 0.6;
}

/* Footer coming-soon items */
.footer-menu-column li.footer-coming-soon {
  position: relative;
}

.footer-menu-column li.footer-coming-soon > a {
  cursor: default !important;
  pointer-events: none;
  opacity: 0.5;
}

.coming-soon-badge--footer {
  top: auto;
  bottom: calc(100% + 4px);
  left: 0;
  transform: translateX(0) translateY(4px);
  font-size: 9px;
  padding: 2px 7px;
}

.footer-coming-soon:hover .coming-soon-badge--footer {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Footer buttons */
.footer-btn-cs-wrap {
  position: relative;
  display: inline-block;
}

.footer-btn-cs-wrap .footer-btn-coming-soon {
  pointer-events: none;
  cursor: default !important;
  opacity: 0.55;
}

.coming-soon-badge--footer-btn {
  top: auto;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
}

.footer-btn-cs-wrap:hover .coming-soon-badge--footer-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.tbm-caption {
    margin-left: 25px;
}
.tbm [class^='fa-'], .tbm [class*=' fa-'] {
    width: 16px;
}
.tbm-link {text-decoration: none;
    font-weight: 500;}
.tbm-submenu {
    width: 800px;
    background-color: #efede4;
    margin-left: -470px;
}

.tbm-link.no-link {
    font-weight: 600;
    font-size: 15px;}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 0;
  gap: 60px;
}

.footer-heading {
  flex: 1;
  max-width: 500px;
}

.footer-heading h2 {
    font-family: 'brixslab';
    font-size: 3rem;
    font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #333333;
  text-align: left;
}

.footer-subtitle {
  font-family: 'brandontext', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 30px;
  text-align: left;
}

.footer-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.footer-buttons .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-family: 'brandontext', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-buttons .btn-primary {
  background-color: #4A90E2;
  color: #ffffff;
  border: none;
}

.footer-buttons .btn-primary:hover {
  background-color: #357ABD;
  color: #ffffff;
}

.footer-buttons .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.footer-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.footer-menus {
  display: flex;
  gap: 80px;
  flex: 0 0 auto;
}

.footer-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-column li {
  margin-bottom: 12px;text-align: left;
}

.footer-menu-column a {
  font-family: 'brandontext', sans-serif;
  font-size: 15px;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
    font-weight: 500;
}

.footer-menu-column a:hover {
  color: #4A90E2;
}

.footer-bottom {
  position: relative;
  height: 355px;
  margin-top: -150px;
  background-image: url('/sites/default/files/footer.webp');
  background-size: 104%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0;
}

.footer-image-section {
  display: flex;
  align-items: center;
    margin-bottom: 90px;
}

.footer-logo-small {
  height: 100px;
  width: auto;
  opacity: 0.9;
}

.footer-social {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: -30px;
}

.footer-social a {
  color: #000000;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  text-decoration:none;
}

.footer-social a:hover {
  color: #000000;
  opacity: 0.7;
}

.footer-copyright {
  text-align: left;
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
}
.navbar-collapse {
    gap: 15px;
}
.footer-copyright p {
  color: #666666;
  font-family: 'brandontext', sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  text-align: left;
}
   .tb-megamenu .nav-collapse.collapse {
     z-index: 999;
     display: block;
   }
   #block-serious-mainnavigation{
   margin-left: 20%;}
.tbm-main {
	width: 100%;
	margin-top:20px } 
.tbm { 
    background-color: transparent;
}

.tbm-link.level-1:hover, .tbm-link.level-1:focus {
    background-color: transparent;
}

.tbm-link.level-1:hover, .tbm-link.level-1:focus {
    background-color: #0001;border-radius:20px;
}

.tbm-subnav>.tbm-item>.tbm-link-container>.tbm-link:hover, .tbm-subnav>.tbm-item>.tbm-link-container>.tbm-link:focus {
    color: #c3922e;
    color:#E2AC56;
}

.bird-jumping-animation {    filter: invert(5%) sepia(6%) saturate(153%) hue-rotate(346deg) brightness(103%) contrast(95%);max-width:200px;}
.tbm-link.level-1 {  
    font-size: 18px;
    margin: 1rem 1rem;
    
    padding: 6px 12px;    font-family: 'brandontext', sans-serif;
font-weight: 500;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s 
ease;
    padding: 5px 0;
    white-space: nowrap;
}

.tbm-link.level-1:hover {    font-weight: 700;
}
#block-hetdok-rightmenu, #block-hetdok-leftmenu {
min-width: 280px;
}
  #block-hetdok-leftmenu .tbm-nav.level-0 {  flex-direction: row-reverse;}
.tbm-item.level-1 {
    border-right: 0;
	padding:2px 4px;
}

 @font-face {
	font-family: brix;
	font-weight: 600;
	font-style: normal;
	src: url('../fonts/BrixSansBold.woff') format('woff')
}
@font-face {
	font-family: brix;
	font-weight: 300;
	font-style: normal;
	src: url('../fonts/BrixSansLight.woff') format('woff')
}
@font-face {
	font-family: brix;
	font-weight: 400;
	font-style: normal;
	src: url('../fonts/BrixSansRegular.woff') format('woff')
}
@font-face {
	font-family: brix;
	font-weight: 500;
	font-style: normal;
	src: url('../fonts/BrixSansMedium.woff') format('woff')
}
@font-face {
	font-family: brix;
	font-weight: 700;
	font-style: normal;
	src: url('../fonts/BrixSansBlack.woff') format('woff')
}
@font-face {
	font-family: brandontext;
	font-weight: 400;
	font-style: normal;
	src: url('../fonts/BrandonText-Regular.woff') format('woff')
}
@font-face {
	font-family: brandontext;
	font-weight: 500;
	font-style: normal;
	src: url('../fonts/BrandonText-Medium.woff') format('woff')
}
@font-face {
	font-family: brandontext;
	font-weight: 700;
	font-style: normal;
	src: url('../fonts/BrandonText-Bold.woff') format('woff')
}
@font-face {
	font-family: brixslab;
	font-weight: 400;
	font-style: normal;
	src: url('../fonts/BrixSlab-Regular.otf') format('opentype')
}
@font-face {
	font-family: brixslab;
	font-weight: 500;
	font-style: normal;
	src: url('../fonts/BrixSlab-Medium.otf') format('opentype')
}
@font-face {
	font-family: brixslab;
	font-weight: 700;
	font-style: normal;
	src: url('../fonts/BrixSlab-Bold.otf') format('opentype')
}
body {
  font-family: brix;
  font-family: brandontext;
}
    .navbar-expand-lg .navbar-collapse {
        justify-content: center;
    }
#main {
    min-height: 100vh;}
	
	#page, #main-wrapper, .region-primary-menu .menu-item a.is-active, .region-primary-menu .menu-item--active-trail a {
    background: bisque;
  background: #efede4;
}
header{
  background: #FBF8F2;
  background: #f5f4f2;
  background: #efede4;
}
body.toolbar-fixed .page-wrapper {
  margin-top: 0px!important;
  background: #efede4;
}

.seagull-categories-section .container-fluid,
.seagull-content-section .container-fluid {
  padding: 0;
}
  /* Home page (node 8) specific styles */
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;    font-family: 'brandontext';
}

/* Page wrapper */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
  background: #FBF8F2;
}

/* Header styles */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  backdrop-filter: blur(0px);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.8);
}

/* Navigation styles */
.main-navigation {
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-left {
  gap: 50px;
}

.nav-right {
  justify-content: space-between;
  flex: 1;
  max-width: 320px;
}

.nav-logo {
  flex: 0 0 auto;
}

.logo-link {
  text-decoration: none;
  color: white;
}

.logo-image {
  height: 140px;
  width: auto;
}

.nav-item {
  color: black;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
    font-family: 'brandontext';
}

.nav-item:hover {
  color: #C3922E;
  text-decoration: none;
}

.book-now-btn {
  background: #C3922E;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 2px 8px rgba(195, 146, 46, 0.3);
}

.book-now-btn:hover {
  background: #A67B25;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(195, 146, 46, 0.4);
}

/* Main content area */
.main-content {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Image section */
.image-section {
  padding: 6rem 0 3rem;
  background: #ffffff;
  background:#efede4;
  overflow: hidden;
}

.image-container {
  position: relative;
  display: inline-block;
  max-width: 1000px;
  width: 100%;
  overflow: visible;
}

.main-image {
  max-width: 1000px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

/* Hotspots - White rounded circles */
.hotspot {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
}

.hotspot:hover {
  background: rgba(255, 187, 57, 0.85) !important;
  transform: scale(1.15);
}

/* Individual desynchronized morph animations for each hotspot */
.hotspot-1 {
  animation: morphShape1 5s ease-in-out infinite;
}

.hotspot-2 {
  animation: morphShape2 6.5s ease-in-out infinite;
}

.hotspot-3 {
  animation: morphShape3 4.8s ease-in-out infinite;
}

.hotspot-4 {
  animation: morphShape4 5.7s ease-in-out infinite;
}

.hotspot-5 {
  animation: morphShape5 6.2s ease-in-out infinite;
}

/* Ball trying to escape animation */
@keyframes ballEscape {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    top: 50%;
    left: 50%;
  }
  25% {
    transform: translate(-50%, -50%) scale(1.2);
    top: 20%;
    left: 50%;
  }
  50% {
    transform: translate(-50%, -50%) scale(0.9);
    top: 50%;
    left: 80%;
  }
  75% {
    transform: translate(-50%, -50%) scale(1.1);
    top: 80%;
    left: 20%;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    top: 50%;
    left: 50%;
  }
}

/* Morphing shape animations - each hotspot has unique timing with more dramatic effects */
@keyframes morphShape1 {
  0%, 100% {
    border-radius: 50%;
    transform: scale(1);
  }
  25% {
    border-radius: 40% 60% 60% 40%;
    transform: scale(1.15);
  }
  50% {
    border-radius: 60% 40% 40% 60%;
    transform: scale(0.85);
  }
  75% {
    border-radius: 35% 65% 65% 35%;
    transform: scale(1.1);
  }
}

@keyframes morphShape2 {
  0%, 100% {
    border-radius: 50%;
    transform: scale(1);
  }
  30% {
    border-radius: 65% 35% 60% 40%;
    transform: scale(1.2);
  }
  60% {
    border-radius: 40% 60% 35% 65%;
    transform: scale(0.8);
  }
  80% {
    border-radius: 55% 45% 35% 65%;
    transform: scale(1.12);
  }
}

@keyframes morphShape3 {
  0%, 100% {
    border-radius: 50%;
    transform: scale(1);
  }
  20% {
    border-radius: 38% 62% 65% 35%;
    transform: scale(1.18);
  }
  55% {
    border-radius: 62% 38% 35% 65%;
    transform: scale(0.82);
  }
  85% {
    border-radius: 35% 65% 60% 40%;
    transform: scale(1.08);
  }
}

@keyframes morphShape4 {
  0%, 100% {
    border-radius: 50%;
    transform: scale(1);
  }
  35% {
    border-radius: 65% 35% 40% 60%;
    transform: scale(1.22);
  }
  65% {
    border-radius: 35% 65% 60% 40%;
    transform: scale(0.78);
  }
  90% {
    border-radius: 42% 58% 35% 65%;
    transform: scale(1.14);
  }
}

@keyframes morphShape5 {
  0%, 100% {
    border-radius: 50%;
    transform: scale(1);
  }
  28% {
    border-radius: 60% 40% 65% 35%;
    transform: scale(1.25);
  }
  58% {
    border-radius: 40% 60% 35% 65%;
    transform: scale(0.75);
  }
  78% {
    border-radius: 65% 35% 55% 45%;
    transform: scale(1.16);
  }
}

@keyframes hotspot-rainbow-bg {
  100%, 0% {
    background-color: rgba(128, 0, 0, 0.6); /* Dark red */
  }
  8% {
    background-color: rgba(128, 64, 0, 0.6); /* Dark orange */
  }
  16% {
    background-color: rgba(128, 128, 0, 0.6); /* Dark yellow */
  }
  25% {
    background-color: rgba(64, 128, 0, 0.6); /* Dark yellow-green */
  }
  33% {
    background-color: rgba(0, 128, 0, 0.6); /* Dark green */
  }
  41% {
    background-color: rgba(0, 128, 64, 0.6); /* Dark green-cyan */
  }
  50% {
    background-color: rgba(0, 128, 128, 0.6); /* Dark cyan */
  }
  58% {
    background-color: rgba(0, 64, 128, 0.6); /* Dark blue-cyan */
  }
  66% {
    background-color: rgba(0, 0, 128, 0.6); /* Dark blue */
  }
  75% {
    background-color: rgba(64, 0, 128, 0.6); /* Dark purple */
  }
  83% {
    background-color: rgba(128, 0, 128, 0.6); /* Dark magenta */
  }
  91% {
    background-color: rgba(128, 0, 64, 0.6); /* Dark pink */
  }
}
.hotspot {
  background: rgba(255, 255, 255, 0.5);}
/* Hotspot positions - all circles with lower opacity */
.hotspot-1 {
    top: 15%;
    left: 15.5%;
  width: 40px;
  height: 40px;
}

.hotspot-2 {
top: 15%;
    right: 21%;
  width: 40px;
  height: 40px;
}

.hotspot-3 {


    top: 82%;
    left: 5.5%;
  width: 40px;
  height: 40px;
}

.hotspot-4 {
    top: 37%;
    left: 55%;
  width: 40px;
  height: 40px;
}

.hotspot-5 {

    bottom: 4%;
    right: 31.5%;

  width: 40px;
  height: 40px;
}

/* Split content section */
.split-content-section {
  padding: 80px 0;
  background: #efede4;
  min-height: 80vh;
}

.split-content-section.reverse {
  background: #efede4;
}

.split-content-section.reverse h3 {
  color: #225800;
}

.content-left, .content-right {
  padding: 60px 40px;
  position: relative;
  display: flex;
  align-items: center;
}

.content-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
  display: block;
}

.content-header {
  margin-bottom: 30px;
}

.line {
  width: 60px;
  height: 2px;
  background: #C3922E;
  margin-bottom: 20px;
}

.content-titles h3 {
  font-family: brandontext;
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Text colors for seagull content sections */
.seagull-content-section .text-group-small h6 {
  color: #ffffff;
}

.seagull-content-section .italics {
  color: rgba(255, 255, 255, 0.8);
}

.seagull-content-section .content-intro {
  color: rgba(255, 255, 255, 0.9);
}

/* Make all text in seagull content sections white */
.seagull-content-section p,
.seagull-content-section span,
.seagull-content-section div {
  color: #ffffff !important;
}

.seagull-content-section .content-item * {
  color: #ffffff !important;
}

.text-group-small {
  margin-bottom: 20px;
}

.text-group-small h6 {
  font-family: brandontext;
  font-size: 0.9rem;
  font-weight: 500;
  color: #C3922E;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.italics {
  font-style: italic;
  color: #666;
  font-size: 0.85rem;
}

.content-intro {
  font-family: brandontext;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  max-width: 500px;
}

.images-right, .images-left {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.image-gallery {
  height: 80vh;
  position: relative;
}

.gallery-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.gallery-image {
  width: 100%;
  height: calc(50% - 10px);
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 20px;
}

.gallery-image:hover {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 991px) {
  .split-content-section .row {
    flex-direction: column;
  }
  
  .content-left, .content-right {
    padding: 40px 20px;
  }
  
  .images-right, .images-left {
    height: 50vh;
    margin-top: 40px;
  }
  
  .image-gallery {
    height: 50vh;
  }
}

/* Tooltip styling */
.tooltip {
  max-width: 350px;
}

.tooltip-inner {
  max-width: 350px;
  padding: 0;
  background: #ffffff;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  text-align: left;
}

.tooltip-video-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.tooltip-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.tooltip-title {
  padding: 15px 15px 10px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.tooltip-description {
  padding: 10px 15px 15px 15px;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  background: #f8f9fa;
  border-radius: 0 0 8px 8px;
}

/* Video section */
.video-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.video-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.video-container {
  max-width: 600px;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Full-width video section */
.video-section-fullwidth {
  padding: 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

.video-fullwidth-container {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  text-align: center;
}

.video-section-fullwidth .video-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: white;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0;
  pointer-events: none;
}

.video-container-fullwidth {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.video-container-fullwidth video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

/* Video Modal Section */
.video-section-modal {
  padding: 80px 0;
  background: #f8f9fa;
}

.video-modal-wrapper {
  text-align: center;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 30px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-thumbnail-img {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.video-thumbnail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
  border-radius: 20px;
}

.video-thumbnail:hover .video-thumbnail-img img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-modal-title {
  font-family: brandontext;
  font-size: 2.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.video-modal-description {
  font-family: 'brandontext', sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  animation: zoomIn 0.3s ease;
}

.video-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, transform 0.3s ease;
}

.video-modal-close:hover {
  background: #fff;
  transform: scale(1.1);
}

.video-modal-player {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-modal-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { 
    opacity: 0;
    transform: scale(0.8);
  }
  to { 
    opacity: 1;
    transform: scale(1);
  }
}

/* Hotel description section */
.hotel-description-section {
  padding: 4rem 0;
  background: #ffffff;
}

.hotel-description {
  background: #ffffff;
  color: #333;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}
h1,
h2,
h3 {
  font-family: brixslab;
}
.hotel-description h1 {
  font-family: brandontext;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  text-align: center;
}

.hotel-description h2 {
  font-family: brandontext;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: #34495e;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.hotel-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #555;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.hero-btn--primary {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: white;
  border: 2px solid transparent;
}

.hero-btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.hero-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
  font-size: 1.5rem;
}
.book .tbm-link {    background-color: #c3922e;
    border: 1px solid #c3922e;
    position: absolute;
    color: white;
    margin-left: 200px;
    margin-top: 7px;
    font-family: 'brandontext', sans-serif;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;}
    
.book .tbm-link:hover {    background-color: black!important;
    border-radius: 0;
}
/* Footer */
.site-footer {
  position: relative;
  z-index: 10;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  background: #EFEDE4;
}
.tbm-link.level-1:hover, .tbm-link.level-1:focus {
    background-color: transparent;
    font-weight:700;
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .image-section {
    padding: 4rem 0 2rem;
  }
  
  .main-image {
    max-width: 90%;
  }
  
  .video-section {
    padding: 3rem 0;
  }
  
  .video-title {
    font-size: 1.8rem;
  }
  
  .video-container {
    max-width: 90%;
  }
  
  .hotel-description-section {
    padding: 3rem 0;
  }
  
  .hotel-description {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .hotel-description h1 {
    font-size: 2rem;
  }
  
  .hotel-description h2 {
    font-size: 1.5rem;
  }
  
  .hotel-description p {
    font-size: 1rem;
  }
  
  .site-header {
    padding: 0.5rem 0;
  }
}

/* Admin toolbar accommodation */
body.toolbar-tray-open.toolbar-vertical.toolbar-fixed .page-wrapper {
  margin-left: 240px;
}

body.toolbar-fixed .page-wrapper {
  margin-top: 39px;
}

@media (max-width: 975px) {
  body.toolbar-tray-open.toolbar-vertical.toolbar-fixed .page-wrapper {
    margin-left: 0;
  }
}

/* Room Content Type Styles */
.room-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

.room-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Room Image Section */
.room-image-section {
  padding: 0;
}

.room-image-container {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.room-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 15px;
  padding: 10px;
}

.room-image-container:hover img {
  transform: scale(1.05);
}

/* Room Video Container */
.room-video-container {
  margin-top: 15px;
  border-radius: 15px;
  overflow: hidden;
  height: 200px;
    margin-right: 15px;
    margin-left: 0px;
}

.room-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.room-image-placeholder {
  height: 400px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
}

.room-placeholder-icon {
  font-size: 4rem !important;
  margin-bottom: 1rem;
}

/* Room Details Section */
.room-details-section {
  padding: 2rem;
}

.room-title-section {
  margin-bottom: 2rem;
}

.room-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  line-height: 1.2;
}

/* Room properties display - consistent for both view and node */
.room-properties {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.room-property {
  margin-bottom: 10px;
}

.property-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(195, 146, 46, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(195, 146, 46, 0.2);
}

.property-icon {
  color: #C3922E;
  font-size: 18px;
}

.property-content {
  display: flex;
  flex-direction: column;
}

.property-label {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.property-value {
  font-weight: 500;
  color: #333;
  font-size: 13px;
}

/* Room Cards Section */
.rooms-view-section {
  padding: 80px 0;
  background: #efede4;
}

.room-card {
  background: rgba(0, 0, 0, 0.01);
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.room-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.room-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.room-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.room-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px ;
}

.room-card .room-image-container img {
  transform: scale(1.05);
}


.room-content {
  padding: 25px;
  padding-bottom: 0;
}

.room-title {
  font-family: 'brix', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.room-properties {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  align-items: center;
}

.room-properties .property-item {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  color: #555;
}


.modal .room-properties .property-item {

  font-size: 15px;
}


.modal .room-property{

  width:auto!important;
}
.room-properties .property-item i {
  color: #C3922E;
  font-size: 16px;
}

.room-properties .property-value {
  font-weight: 500;
  white-space: nowrap;
  font-size: 13px;
}

.modal .room-properties .property-value {

  font-size: 15px;
}
.room-description {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* Bootstrap Modal Width Override */
@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        --bs-modal-width: 1200px;
    }
}

/* Room Modal Styles */
.room-modal {
  padding: 0;
}

.room-modal-layout {
  display: flex;
  min-height: 480px;
}

/* Left: image panel */
.room-modal-media {
  flex: 0 0 42%;
  position: relative;
  background: #111;
  overflow: hidden;
}

.modal-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.modal-image-wrap .field--name-field-room-images {
  height: 100%;
}

.modal-image-wrap .field--name-field-room-images .field__items {
  height: 100%;
}

.modal-image-wrap .field__item {
  height: 100%;
}

.modal-image-wrap .field__item:not(:first-child) {
  display: none;
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-image-placeholder {
  height: 100%;
  min-height: 480px;
  background: #f0ece4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
}

.modal-image-placeholder i {
  font-size: 48px;
  margin-bottom: 10px;
}

/* Right: info panel */
.room-modal-info {
  flex: 1;
  padding: 36px 32px 28px;
  overflow-y: auto;
  max-height: 90vh;
  position: relative;
}

/* Close button */
.modal-close-x {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close-x:hover {
  color: #333;
}

.modal-close-x .material-icons {
  font-size: 22px;
}

/* Header text */
.modal-hotel-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C3922E;
  margin-bottom: 8px;
}

.modal-room-title {
  font-family: 'brixslab', serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Property badges */
.modal-props-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.modal-prop-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #faf6ef;
  border: 1px solid rgba(195, 146, 46, 0.25);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
}

.modal-prop-badge .material-icons {
  font-size: 16px;
  color: #C3922E;
}

.modal-prop-price {
  background: #C3922E;
  border-color: #C3922E;
  color: #fff;
}

.modal-prop-price .material-icons {
  color: #fff;
}

/* Amenities strip */
.modal-amenities-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
  padding: 16px;
  background: #f8f6f3;
  border-radius: 8px;
}

.modal-strip-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: #444;
}

.modal-strip-item .material-icons {
  font-size: 17px;
  color: #C3922E;
  flex-shrink: 0;
}

/* Description */
.modal-room-desc {
  margin-bottom: 24px;
}

.modal-desc-title {
  font-family: 'brixslab', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-desc-body {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
}

.modal-desc-body p {
  margin-bottom: 0;
}

/* CTA row */
.modal-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-btn-primary {
  display: inline-block;
  background: #C3922E;
  color: #fff;
  padding: 11px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s;
}

.modal-btn-primary:hover {
  background: #a67c25;
  color: #fff;
  transform: translateY(-1px);
}

.modal-btn-secondary {
  display: inline-block;
  background: transparent;
  color: #333;
  padding: 11px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  border: 2px solid #ddd;
  transition: border-color 0.2s, color 0.2s;
}

.modal-btn-secondary:hover {
  border-color: #C3922E;
  color: #C3922E;
}

/* Modal responsive */
@media (max-width: 767px) {
  .room-modal-layout {
    flex-direction: column;
  }

  .room-modal-media {
    flex: none;
    height: 220px;
  }

  .modal-image-wrap,
  .modal-image-wrap .field--name-field-room-images,
  .modal-image-wrap .field--name-field-room-images .field__items,
  .modal-image-wrap .field__item {
    height: 220px;
    min-height: unset;
  }

  .modal-image-placeholder {
    min-height: 220px;
  }

  .room-modal-info {
    padding: 24px 20px 20px;
    max-height: none;
  }

  .modal-room-title {
    font-size: 1.4rem;
  }

  .modal-amenities-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .rooms-view-section {
    padding: 50px 0;
  }
  
  .room-image-container {
    height: 200px;
  }
  
  .room-content {
    padding: 20px;
  }
  
  .room-title {
    font-size: 20px;
  }
  
  .room-properties {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .room-card {
    margin-bottom: 1rem;
  }
  
  .room-details-section {
    padding: 1rem;
  }
  
  .room-title {
    font-size: 1.75rem;
  }
  
  .room-properties .row {
    margin: 0;
  }
  
  .room-property {
    padding: 0;
    margin-bottom: 1rem;
    width: auto;
  }
}

/* Amenities Section */
.room-amenities {
  margin-bottom: 2.5rem;
}

.amenities-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.amenities-grid {
  padding: 0;
}

/* Room modal property items - vertical layout */
.room-modal .property-item {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  transition: opacity 0.3s ease;
}

.property-item:hover {
  opacity: 0.8;
}

.property-header {
  display: flex;
  align-items: center;
  margin-bottom: 0rem;
}

.property-icon {
  font-size: 1.5rem !important;
  color: #6c757d;
  margin-right: 0.5rem;
  min-width: 24px;
}

.property-label {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.property-value {
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 600;
  width: 100%;
}

.amenity-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  transition: opacity 0.3s ease;
}

.amenity-item:hover {
  opacity: 0.8;
}
.amenities-grid > .row {
    margin: 0;}
.amenity-icon {
  font-size: 1.2rem !important;
  color: #28a745;    color: #e99d00;

  margin-right: 0.5rem;
  min-width: 20px;
}

.amenity-content {
  display: flex;
  flex-direction: column;
}

.amenity-label {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.amenity-value {
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* Room Description */
.room-description {
  margin-bottom: 1.5rem;
}

.description-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.description-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
}

.description-content p {
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .room-image-container {
    min-height: 250px;
  }
  
  .room-details-section {
    padding: 1.5rem;
  }
  
  .room-title {
    font-size: 2rem;
  }
  
  .property-item {
    padding: 0.75rem;
  }
  
  .amenities-grid {
    padding: 1rem;
  }
  
  .amenity-item {
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 576px) {
  .room-card {
    margin-bottom: 1rem;
  }
  
  .room-details-section {
    padding: 1rem;
  }
  
  .room-title {
    font-size: 1.75rem;
  }
  
  .room-properties .row {
    margin: 0;
  }
  
  .room-property {
    padding: 0;
    margin-bottom: 1rem;
  }
}

/* Marmara Style Header */
.site-header.marmara-style {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 0px solid rgba(0, 0, 0, 0.1);
    background: #efede4;
  transition: all 0.3s ease;
}

.site-header.marmara-style.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 40px;
  min-height: 100px;
}

.header-column {
  display: flex;
  align-items: center;
  flex: 1;
}

.header-menu-left {
  flex: 1;
  justify-content: flex-end;
  padding-right: 15px;
  padding-left: 20px;
}

.header-logo--center {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.header-menu-right {
  flex: 1;
  justify-content: flex-start;
  padding-left: 15px;
  padding-right: 20px;
}

.header-menu-right .header-navigation--top {
  flex: 1;
}

.header-menu-right .header-navigation--btm {
  flex: 0 0 auto;
  margin-left: auto; /* Push to far right */
}

.header-logo img {
  height: 120px;
  width: auto;
  transition: transform 0.3s ease;
}

.header-logo:hover img {
  transform: scale(1.05);
}

.header-navigation {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.header-menu-left .header-navigation--top,
.header-menu-left .header-navigation--btm,
.header-menu-right .header-navigation--top,
.header-menu-right .header-navigation--btm {
  display: flex;
  flex-direction: column;
  position: relative;
}

.header-navigation--btm_main {
  display: flex;
  align-items: center;
  padding: 8px 0;
  gap: 20px;
}

.header-menu-right .header-navigation--btm_main {
  justify-content: flex-end;
}

.header-links ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px; /* Increased from 30px */
}

.header-links li {
  position: relative;
}

.header-links a {
  font-family: 'brandontext', sans-serif;
  font-weight: 400;
  font-size: 15px; /* Reduced from 16px by 2px */
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 5px 0;
  white-space: nowrap;
}

.header-links a:hover,
.header-links a.dropdown:hover {
  color: #8B6E4A;
}

.header-links a.dropdown::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
}

.header_buttons_check .button,
.header-buttons_check .button {
  background-color: #c3922e;
  border: 1px solid #c3922e;
  color: #FFFFFF;
  font-size: 14px;
  font-family: 'brandontext', sans-serif;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header_buttons_check .button:hover,
.header_buttons_check .button:focus,
.header-buttons_check .button:hover,
.header-buttons_check .button:focus {
  background-color: #000000;
  border-color: #000000;
  color: #FFFFFF;
}

.popup-navigation--toggle {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
  margin-left: 20px;
}

.popup-navigation--toggle:hover {
  color: #8B6E4A;
}

.popup-navigation--toggle svg {
  width: 24px;
  height: auto;
}

.header-navigation--btm_child {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.header-navigation--btm:hover .header-navigation--btm_child {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navigations-top_links ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigations-top_links a {
  font-family: 'brandontext', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.navigations-top_links a:hover {
  color: #8B6E4A;
}

/* Add body padding to account for fixed header */
body {
  padding-top: 0px;
}

/* Marmara Header Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 20px;
  }
  
  .header-links ul {
    gap: 20px;
  }
  
  .header-links a {
    font-size: 12px; /* Reduced from 14px by 2px */
  }
  
  .popup-navigation--toggle {
    display: none; /* Hide mobile menu toggle */
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    min-height: auto;
    padding: 15px;
  }
  
  .header-logo {
    padding-right: 0;
    padding-bottom: 15px;
    justify-content: center;
  }
  
  .header-navigation--top,
  .header-navigation--btm_main {
    flex-direction: column;
    gap: 15px;
  }
  
  .header-links ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .navigations-top_links ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Seagull Categories Section */
.seagull-categories-section {
  background: #efede4;
  padding: 80px 0 40px 0;
  position: relative;
  overflow: visible;
  z-index: 0;
}

/* Seagull Selector Title */
.seagull-selector-title {
  text-align: center;
  margin-bottom: 60px;
}

.seagull-selector-title h2 {
  font-family: 'brandontext', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  position: relative;
  display: inline-block;
}

.seagull-selector-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #C3922E;
}

/* Seagull Selector - Top Icons */
.seagull-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-bottom: 80px;
  padding: 40px 0;
}

.seagull-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.seagull-icon img {
  width: 150px;
  height: auto;
  filter: grayscale(50%) opacity(0.8);
  transition: all 0.4s ease;
  transform: scale(1);
}

.seagull-icon:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

.seagull-icon.active img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.15);
}

.seagull-label {
  font-family: 'brix', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  text-align: center;
  line-height: 1.3;
  max-width: 120px;
}

.seagull-icon:hover .seagull-label,
.seagull-icon.active .seagull-label {
  color: #C3922E;
}

/* Seagull Content Sections */
.seagull-content-section {
  padding: 80px 0;
  background: #FBF8F2;
  min-height: 100vh;
  position: relative;
  margin: 0; /* Remove any margin gaps */
}

.seagull-content-section.reverse {
  background: #FBF8F2;
  margin: 0; /* Remove any margin gaps */
}

/* Background colors for different sections */
/* First two sections - Working (warm muted yellow) - same color */
.seagull-content-section.working-section {
  background: #e2ac56; /* Warm muted yellow */
}

.seagull-content-section.working-section.reverse {
  background: #e2ac56; /* Same warm muted yellow */
}

/* Next two sections - Party (warm muted pink) - same color */
.seagull-content-section.party-section {
  background: #e8906a; /* Warm muted pink */
}

.seagull-content-section.party-section.reverse {
  background: #e8906a; /* Same warm muted pink */
}

/* Last two sections - Holiday (warm muted blue) - same color */
.seagull-content-section.holiday-section {
  background: #6682bf; /* Warm muted blue */
}

.seagull-content-section.holiday-section.reverse {
  background: #6682bf; /* Same warm muted blue */
}

/* Path connector between sections - creates the "road around" effect */
.path-connector {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 11;
  pointer-events: none;
  overflow: visible;
}

/* Wavy transitions between sections */
.seagull-content-section {
  position: relative;
  overflow: hidden;
}

/* Top wave for first working section */
.seagull-content-section.working-section:first-child::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -10%;
  width: 120%;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,100 C150,20 300,20 450,100 C600,180 750,180 900,100 C1050,20 1200,20 1200,100 L1200,0 L0,0 Z' fill='%23e2ac56'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  z-index: 10;
}

/* Working sections transition to Party color (only for second working section) */
.seagull-content-section.working-section.reverse::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -10%;
  width: 120%;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,100 C150,180 300,180 450,100 C600,20 750,20 900,100 C1050,180 1200,180 1200,100 L1200,200 L0,200 Z' fill='%23e8906a'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  z-index: 10;
}

/* Party sections transition to Holiday color (only for second party section) */
.seagull-content-section.party-section.reverse::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -10%;
  width: 120%;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,100 C150,180 300,180 450,100 C600,20 750,20 900,100 C1050,180 1200,180 1200,100 L1200,200 L0,200 Z' fill='%236682bf'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  z-index: 10;
}

/* Bottom wave for last holiday section */
.seagull-content-section.holiday-section:last-child::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -10%;
  width: 120%;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,100 C150,180 300,180 450,100 C600,20 750,20 900,100 C1050,180 1200,180 1200,100 L1200,200 L0,200 Z' fill='%23efede4'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  z-index: 10;
}

/* Video containers for sections */
.video-left, .video-right {
  display: flex;
  align-items: center;
}

.video-left {
  justify-content: flex-start;
  padding-left: 0;
}

.video-right {
  justify-content: flex-end;
  padding-right: 0;
}

.video-container {
  width: 85%;
  height: 400px;
  width: 70%;
    height: 259px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  position: relative;
}

/* Push text content toward video side */
.seagull-content-section .content-left {
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
}

.seagull-content-section .content-right {
  display: flex;
  justify-content: flex-start;
  padding-left: 20px;
}

.section-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
.seagull-content-section .row {
  position: relative;
  gap: 40px;
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
}

/* Path on LEFT: push content to RIGHT (away from path) */
.seagull-content-section:not(.reverse) .row {
  padding-left: 250px;
  padding-right: 80px;
  justify-content: flex-end;
  margin-right: 0;
}

/* Path on RIGHT: push content to LEFT (away from path) */
.seagull-content-section.reverse .row {
  padding-right: 250px;
  padding-left: 80px;
  justify-content: flex-start;
  margin-left: 0;
}

.seagull-content-section .content-left,
.seagull-content-section .content-right {
  flex: 0 0 auto;
  max-width: 450px;
  padding: 30px;
}

.seagull-content-section .images-right,
.seagull-content-section .images-left {
  flex: 0 0 auto;
  max-width: 450px;
  padding: 30px;
}

/* Seagull Path/Wrapper - positioned on LEFT or RIGHT side */
.seagull-scroll-wrapper {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  min-height: 500px;
  z-index: 5; /* keep below the global road */
  pointer-events: none;
  overflow: visible;
  display: block;
  left: 0; /* Default: path on LEFT */
}

/* Sections WITHOUT reverse (content on right): path on LEFT */
.seagull-content-section:not(.reverse) .seagull-scroll-wrapper {
  left: 80px;
  right: auto;
}

/* Sections WITH reverse (content on left): path on RIGHT */
.seagull-content-section.reverse .seagull-scroll-wrapper {
  left: auto;
  right: 80px;
}

/* Seagull Image */
.seagull-transition {
  position: absolute;
  width: 270px;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  /* Don't set top here - let JavaScript control it */
  opacity: 0;
  transition: top 0.1s linear, left 0.1s linear, opacity 0.3s ease;
  z-index: 15;
  filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.3));
  display: block;
  max-width: none;
  pointer-events: none;
  will-change: top, left, opacity;
}
.seagull-content-section .content-left {
    margin-right: -220px;margin-left:0}
.seagull-content-section.reverse .content-right {
    margin-left: -220px;margin-right:0}
.col-lg-6.video-left  .video-container { margin-left: 0;}
.col-lg-6.video-right   .video-container { margin-right: 0;}

/* Responsive Design for Seagulls */
@media (max-width: 991px) {
  .seagull-selector {
    gap: 40px;
    padding: 30px 0;
  }
  
  .seagull-icon img {
    width: 100px;
  }
  
  .seagull-label {
    font-size: 0.9rem;
  }
  
  .seagull-scroll-wrapper {
    width: 150px;
  }
  
  .seagull-transition {
    width: 270px;
  }
  
  .seagull-content-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .seagull-selector {
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .seagull-icon img {
    width: 80px;
  }
  
  .seagull-label {
    font-size: 0.8rem;
  }
  
  .seagull-scroll-wrapper {
    display: none;
  }
  
  .seagull-content-section {
    padding: 40px 0;
  }
}

/* ========================================
   Skateboarding Seagull Delivery Animation
   ======================================== */

/* Building animation - comes from right - starts immediately after intro */
#mainBuilding {
  opacity: 0;
  transform: translateX(120vw);
}

body.intro-complete #mainBuilding {
  opacity: 1;
  animation: buildingSlideIn 7s ease-in-out forwards;   
   max-width: 50vw;
    margin: auto;
}

/* Seagull wrapper - absolute positioned relative to image-container */
.skate-delivery-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
  display: none;
}

body.intro-complete .skate-delivery-wrapper {
  display: block;
}

/* The skateboarding seagull */
.delivery-seagull {
  position: absolute;
  width: 560px;
  height: auto;
  filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.4));
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

body.intro-complete .delivery-seagull {
  animation: seagullRide 10s ease-in-out forwards, skateBounce 0.3s ease-in-out infinite;
}

/* Building slides in from right to center - NO fade effect */
@keyframes buildingSlideIn {
  0% {
    transform: translateX(120vw);
    opacity: 1;
  }
  65% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Seagull rides along with building then exits left - synchronized arrival */
@keyframes seagullRide {
  0% {
    left: calc(100vw + 100px);
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  45% {
    /* Seagull arrives with building at 4.5s (45% of 10s, 65% of 7s ~ 4.5s) */
    left: -650px;
    opacity: 1;
  }
  100% {
    /* Seagull continues skating off to the left */
    left: -100vw;
    opacity: 0;
  }
}

/* Bouncing skateboard effect */
@keyframes skateBounce {
  0%, 100% {
    margin-top: 0;
  }
  50% {
    margin-top: -8px;
  }
}

/* Hotspots - hidden during intro and skateboard animation, then show */
/* DISABLED for static version - hotspots show immediately with desynchronized morphing
.image-container .hotspot {
  opacity: 0;
}

body.intro-complete .image-container .hotspot {
  animation: hotspotsFadeIn 0.8s ease-out 7.5s forwards, morphShape 4s ease-in-out 7.5s infinite;
}

body.intro-complete .image-container .hotspot-1 {
  animation-delay: 7.5s, 7.5s;
}

body.intro-complete .image-container .hotspot-2 {
  animation-delay: 7.5s, 7.2s;
}

body.intro-complete .image-container .hotspot-3 {
  animation-delay: 7.5s, 6.8s;
}

body.intro-complete .image-container .hotspot-4 {
  animation-delay: 7.5s, 6.5s;
}

body.intro-complete .image-container .hotspot-5 {
  animation-delay: 7.5s, 7s;
}
*/

@keyframes hotspotsFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Seagull video on left side - appears with hotspots */
.seagull-video-wrapper {
  position: absolute;
  left: -25%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: auto;
  opacity: 0;
  z-index: 5;
}

.seagull-video-gif {
  width: 100%;
  height: auto;
  display: block;
}

body.intro-complete .seagull-video-wrapper {
  animation: seagullVideoFadeIn 0.8s ease-out 7.5s forwards;
}

@keyframes seagullVideoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* Megaphone on right side - appears with hotspots and rotates */
.megaphone-wrapper {
  position: absolute;
  right: -25%;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: auto;
  opacity: 0;
  z-index: 5;
  transform-origin: center center;
}

.megaphone-image {
  width: 100%;
  height: auto;
  display: block;
}

body.intro-complete .megaphone-wrapper {
  animation: megaphoneFadeIn 0.8s ease-out 7.5s forwards, megaphoneRotate 4s ease-in-out 8.3s infinite;
}

@keyframes megaphoneFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

@keyframes megaphoneRotate {
  0%, 100% {
    transform: translateY(-50%) rotateZ(10deg);
  }
  50% {
    transform: translateY(-50%) rotateZ(-10deg);
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .delivery-seagull {
    width: 440px;
  }
}

@media (max-width: 768px) {
  .delivery-seagull {
    width: 340px;
  }
  
  @keyframes seagullDeliveryPath {
    0% {
      opacity: 0;
      transform: translate(-50%, -50%) translateX(calc(150vw - 180px));
    }
    10% {
      opacity: 1;
    }
    60% {
      opacity: 1;
      transform: translate(-50%, -50%) translateX(-100px);
    }
    100% {
      opacity: 0;
      transform: translate(-50%, -50%) translateX(-100vw);
    }
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-menus {
    gap: 40px;
  }
  
  .footer-heading h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer-wrapper {
    padding: 0 20px;
  }
  
  .footer-top {
    padding: 40px 0;
  }
  
  .footer-heading h2 {
    font-size: 2rem;
  }
  
  .footer-menus {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-bottom {
    height: 200px;
    padding: 0 20px 20px 20px;
  }
  
  .footer-logo-small {
    height: 80px;
  }
  
  .footer-social {
    gap: 15px;
  }
  
  .footer-social a {
    font-size: 20px;
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .site-footer-black {
    padding: 40px 0 0 0;
    margin-top: 40px;
  }
  
  .footer-heading h2 {
    font-size: 1.75rem;
  }
  
  .footer-buttons {
    flex-direction: column;
  }
  
  .footer-buttons .btn {
    text-align: center;
  }
  
  .footer-bottom {
    height: 150px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
  }
}
.event-card-body {

    text-align: justify;
}
.event-card {
  margin-bottom: 30px;
}

.event-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.footer-menu-column li:last-child {visibility:hidden}
.event-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  color: inherit;
  text-decoration: none;
}

.event-image-container {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
}

.event-image-container img {
  width: 100% !important;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.event-card-link:hover .event-image-container img {
  transform: scale(1.05);
}

.event-content {
  padding: 4px 0;
}

.event-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  margin: 0 0 6px 0;
}

.event-card-title a {
  color: #000;
  text-decoration: none;
}

.event-card-title a:hover {
  color: #000;
  text-decoration: none;
}

.event-card-date {
  font-size: 0.85rem;
  color: #535353;
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}


.event-card-body {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
}

#eventModal .modal-content,
[id^="eventModal"] .modal-content {
  background-color: #EFEDE4;
}

.event-card-body p {
  margin: 0;
}

/* ========================================
   Floating Video Pin Widget
   ======================================== */
.video-pin-outer {
  position: fixed;
  left: 17px;
  bottom: 17px;
  z-index: 999;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
  pointer-events: auto;
}

.video-pin-outer.minimized {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5);
}

.video-pin-outer.fullscreen {
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
}
.path-frontpage h3.section-title.animate-element {
  display:none;
}
.footer-wrapper .footer-buttons {
  display:none;
}
.video-pin-container {
  position: relative;
  width: 276px;
  height: 155px;
  border-radius: 0px;
  overflow: hidden;
  border: 4px solid #C3922E;
  background-color: #c3c3c3;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  transition: width 0.4s cubic-bezier(0.6, 0.35, 0.43, 1.3),
              height 0.4s cubic-bezier(0.6, 0.35, 0.43, 1.3),
              border-radius 0.4s ease,
              border-width 0.3s ease;
  cursor: pointer;
}

.video-pin-outer.fullscreen .video-pin-container {
  width: 90vw;
  height: 80vh;
  max-width: 1200px;
  max-height: 700px;
  border-radius: 12px;
  border-width: 0;
  cursor: default;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-pin-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.video-pin-outer.fullscreen .video-pin-container video {
  object-fit: contain;
  pointer-events: auto;
}

/* Close button - top right of pin (small mode) */
.video-pin-close {
  position: absolute;
  top: -7px;
  right: -8px;
  width: 18px;
  height: 18px;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  z-index: 11;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-pin-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

/* Close button in fullscreen mode */
.video-pin-outer.fullscreen .video-pin-close {
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  font-size: 22px;
  line-height: 44px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}

.video-pin-outer.fullscreen .video-pin-close:hover {
  background: #fff;
  transform: scale(1.1);
}

/* Fullscreen icon overlay on hover (small mode only) */
.video-pin-expand-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 5px;
  z-index: 5;
}

.video-pin-container:hover .video-pin-expand-icon {
  opacity: 1;
}

.video-pin-outer.fullscreen .video-pin-expand-icon {
  display: none;
}

.video-pin-expand-icon svg {
  width: 40px;
  height: 40px;
  fill: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Minimized recall tab */
.video-pin-recall {
  position: fixed;
  left: 17px;
  bottom: 17px;
  z-index: 998;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #C3922E;
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}

.video-pin-recall:hover {
  transform: scale(1.1);
  background: #a67b25;
}

.video-pin-recall svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .video-pin-container {
    width: 200px;
    height: 112px;
  }

  .video-pin-outer.fullscreen .video-pin-container {
    width: 95vw;
    height: 60vh;
  }
}

/* ==========================================================================
   Over Ons Page (Node 24)
   ========================================================================== */
.overons-page .container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.overons-page .row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.overons-page .col-lg-6 { width: 100%; padding: 0 15px; }
.overons-page .align-items-center { align-items: center; }
.overons-page .text-center { text-align: center; }

/* Over Ons Hero */
.overons-page .overons-hero { position: relative; min-height: 70vh; display: flex; align-items: center; background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%); padding: 160px 0 100px; overflow: hidden; }
.overons-page .overons-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('/sites/default/files/6.jpg') center/cover no-repeat; opacity: 0.15; }
.overons-page .overons-hero .hero-content { position: relative; z-index: 2; max-width: 800px; }
.overons-page .hero-label { display: inline-block; color: #C3922E; font-size: 0.875rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.overons-page .overons-hero h1 { font-family: 'brixslab', serif; font-size: 3.5rem; font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 25px; }
.overons-page .hero-intro { font-size: 1.4rem; color: rgba(255,255,255,0.8); line-height: 1.8; max-width: 650px; font-style: italic; }

/* Over Ons Content Sections */
.overons-section { padding: 100px 0; }
.overons-alt-bg { background: #f8f6f3; }
.overons-image-wrapper { border-radius: 4px; overflow: hidden; border: 3px solid #C3922E; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.overons-image-wrapper.rauw-border { border-color: #8B4513; }
.overons-image-wrapper img { width: 100%; height: auto; display: block; aspect-ratio: 4/3; object-fit: cover; }
.overons-content-block { padding: 20px 0 20px 40px; }
.overons-label { display: inline-block; color: #C3922E; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; position: relative; padding-left: 40px; }
.overons-label::before { content: ''; position: absolute; left: 0; top: 50%; width: 25px; height: 2px; background: #C3922E; }
.overons-label.centered { padding-left: 0; }
.overons-label.centered::before { display: none; }
.overons-content-block h2 { font-family: 'brixslab', serif; font-size: 2.2rem; font-weight: 600; color: #333; margin-bottom: 20px; line-height: 1.3; }
.overons-content-block p { font-size: 1.1rem; color: #555; line-height: 1.8; margin-bottom: 15px; }
.overons-highlight-text { font-style: italic; color: #333 !important; border-left: 3px solid #C3922E; padding-left: 20px; margin-top: 25px !important; }

/* Over Ons Sister Hotel Info */
.overons-sister-info { background: #fff; border-radius: 8px; padding: 25px 30px; margin-top: 25px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); border-left: 4px solid #8B4513; }
.overons-sister-info h4 { font-family: 'brixslab', serif; font-size: 1.2rem; margin-bottom: 10px; color: #333; }
.overons-sister-info p { font-size: 1rem; margin-bottom: 10px; }
.overons-contact-details { list-style: none; padding: 0; margin: 10px 0 0; }
.overons-contact-details li { font-size: 0.95rem; color: #555; padding: 5px 0; display: flex; align-items: center; gap: 10px; }
.overons-contact-details li i { color: #C3922E; width: 16px; text-align: center; }
.overons-contact-details a { color: #C3922E; text-decoration: none; }
.overons-contact-details a:hover { text-decoration: underline; }

/* Over Ons Locaties */
.overons-locaties-section { padding: 80px 0; }
.overons-section-header { margin-bottom: 40px; }
.overons-section-header h2 { font-family: 'brixslab', serif; font-size: 2.2rem; font-weight: 600; color: #333; margin-bottom: 20px; }
.overons-locaties-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 800px; margin: 0 auto; }
.overons-locatie-card { background: #fff; border-radius: 8px; padding: 40px 30px; text-align: center; box-shadow: 0 5px 25px rgba(0,0,0,0.06); border-top: 4px solid #C3922E; margin-top: 30px; }
.overons-locatie-icon { margin-bottom: 20px; min-height: 50px; display: flex; align-items: center; justify-content: center; }
.overons-locatie-card h3 { font-family: 'brixslab', serif; font-size: 1.3rem; margin-bottom: 10px; }
.overons-locatie-card > p { font-size: 0.95rem; color: #555; margin-bottom: 15px; }
.overons-locatie-card .overons-contact-details { justify-content: center; }
.overons-locatie-card .overons-contact-details li { justify-content: center; font-size: 0.9rem; }

/* Over Ons Buttons */
.overons-page .btn-gold { display: inline-block; background: #C3922E; color: #fff; padding: 14px 36px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; border: 2px solid #C3922E; margin-top: 10px; }
.overons-page .btn-gold:hover { background: #a67c25; border-color: #a67c25; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(195,146,46,0.3); }

/* Over Ons Fade Animations */
.overons-page .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.overons-page .fade-up.animate { opacity: 1; transform: translateY(0); }

/* Over Ons Responsive */
@media (min-width: 992px) {
  .overons-page .col-lg-6 { width: 50%; }
  .overons-page .order-lg-1 { order: 1; }
  .overons-page .order-lg-2 { order: 2; }
}
@media (max-width: 991px) {
  .overons-page .overons-hero { min-height: 50vh; padding: 140px 0 60px; }
  .overons-page .overons-hero h1 { font-size: 2.2rem; }
  .overons-section { padding: 60px 0; }
  .overons-content-block { padding: 30px 0 0 0; }
  .overons-locaties-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .overons-page .overons-hero h1 { font-size: 1.8rem; }
}

/* ==========================================================================
   Main Hero Top (Block 6)
   ========================================================================== */
.main-hero-top-section { padding: 80px 0 60px 0; position: relative; overflow: hidden; }
.main-hero-top-section .container { max-width: 1200px; }
.main-hero-top-section .row { display: flex; align-items: center; justify-content: space-between; }
.hero-title-col { padding-right: 20px; }
.hero-main-title { font-size: 3rem; font-weight: 500; line-height: 1.2; color: #333; margin: 0; text-align: left; padding-left: 60px; }
.hero-animation-col { display: flex; justify-content: center; align-items: center; padding: 0 10px; }
.bird-animation-wrapper { width: 100%; max-width: 200px; display: flex; justify-content: center; align-items: center; }
.hero-content-col { padding-left: 70px; }
.hero-content { max-width: 500px; }
.hero-description { font-family: 'brandontext', sans-serif; font-size: 1.125rem; line-height: 1.7; margin-bottom: 30px; text-align: left; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-btn-primary, .hero-btn-secondary { font-family: 'brandontext', sans-serif; font-size: 16px; font-weight: 500; padding: 14px 32px; border-radius: 30px; text-decoration: none; transition: all 0.3s ease; display: inline-block; border: 2px solid transparent; }
.hero-btn-primary { background-color: #5B7FBF; color: #ffffff; border-color: #5B7FBF; }
.hero-btn-primary:hover { background-color: #4A6BA3; border-color: #4A6BA3; color: #ffffff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(91, 127, 191, 0.3); }
.hero-btn-secondary { background-color: transparent; color: #333; border-color: #333; }
.hero-btn-secondary:hover { background-color: #333; color: #ffffff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); }

/* Hero entrance animations */
.hero-gif-entrance { opacity: 1; }
.hero-word-reveal .hero-word { display: inline-block; opacity: 0; transform: translateY(18px); transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1), transform 0.32s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-word-reveal .hero-word.is-visible { opacity: 1; transform: translateY(0); }
.hero-content-entrance { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-content-entrance.is-visible { opacity: 1; transform: translateY(0); }
.site-header.hero-header-hidden { opacity: 0 !important; visibility: hidden !important; }
.site-header.hero-header-visible { opacity: 1 !important; visibility: visible !important; transition: opacity 0.5s ease-in, visibility 0.5s ease-in; }

@media (max-width: 991px) {
  .main-hero-top-section { padding: 60px 0 40px 0; }
  .main-hero-top-section .row { flex-direction: column; text-align: center; }
  .hero-title-col, .hero-animation-col, .hero-content-col { padding: 20px 0; max-width: 100%; }
  .hero-main-title { font-size: 2.5rem; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-description { text-align: center; }
  .hero-buttons { justify-content: center; }
  .bird-animation-wrapper { max-width: 150px; }
}
@media (max-width: 768px) {
  .main-hero-top-section { padding: 40px 0 30px 0; }
  .main-hero-top-section .container { padding: 0 20px; }
  .hero-main-title { font-size: 2rem; }
  .hero-description { font-size: 1rem; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-btn-primary, .hero-btn-secondary { width: 100%; text-align: center; }
}

/* ==========================================================================
   Hotel Animation Static (Block 7)
   ========================================================================== */
#mainBuilding { opacity: 1 !important; transform: translateX(0) !important; animation: none !important; }
.building-star, .star-left, .star-right { display: none !important; }
.birds, .birds.front, .birds.back { display: none !important; }
.cloud { display: block !important; }
.image-container .hotspot { opacity: 1 !important; background: rgba(255, 255, 255, 0.75) !important; }
.image-container .hotspot:hover { background: rgba(255, 187, 57, 0.85) !important; transform: scale(1.15) !important; }
.megaphone-wrapper { opacity: 1 !important; animation: megaphoneRotate 4s ease-in-out 0.8s infinite !important; }
.image-section.image-section-hidden { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.image-section.image-section-visible { opacity: 1; transform: translateY(0); }
/* ==========================================================================
   Main Hero Bottom (Block 8) - Seagull Sections & Doetips
   ========================================================================== */

.doetips-section { padding: 100px 0; font-family: 'brandontext', 'Segoe UI', sans-serif; }
  .doetips-section .container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
  .doetips-section .section-header { margin-bottom: 50px; text-align: center; }
  .doetips-section .section-header h2 { font-family: 'brixslab', serif; font-size: 2.5rem; font-weight: 600; margin-bottom: 15px; color: #333; }
  .doetips-section .section-label { display: inline-block; color: #C3922E; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; }
  .doetips-section .section-subtitle { font-size: 1.1rem; color: #555; line-height: 1.8; max-width: 700px; margin: 0 auto; }
  .tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .tip-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 35px rgba(0,0,0,0.08); transition: transform 0.3s; }
  .tip-card:hover { transform: translateY(-5px); }
  .tip-image { position: relative; height: 250px; overflow: hidden; }
  .tip-image img { width: 100%; height: 100%; object-fit: cover; }
  .doetip-photo-wrapper { position: relative; width: 100%; height: 100%; border: none !important; box-shadow: none !important; aspect-ratio: unset; border-radius: 0; margin: 0; max-width: none; overflow: hidden; }
  .doetip-photo-wrapper .section-photo { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0; transform: translateY(100%); transition: none; }
  .doetip-photo-wrapper .section-photo.active { opacity: 1; transform: translateY(0); }
  .doetip-photo-wrapper .section-photo.slide-up-in { animation: doetipSlideUpIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
  .doetip-photo-wrapper .section-photo.slide-up-out { animation: doetipSlideUpOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
  @keyframes doetipSlideUpIn { 0% { opacity: 1; transform: translateY(100%); } 100% { opacity: 1; transform: translateY(0); } }
  @keyframes doetipSlideUpOut { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 1; transform: translateY(-100%); } }
  .tip-badge { position: absolute; top: 15px; right: 15px; background: #C3922E; color: #fff; padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; z-index: 2; }
  .tip-content { padding: 30px; }
  .tip-content h3 { font-family: 'brixslab', serif; font-size: 1.4rem; margin-bottom: 5px; color: #333; }
  .tip-tagline { font-size: 0.9rem; color: #C3922E; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 15px; }
  .tip-content p { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 10px; }
  .doetips-fade { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .doetips-fade.animate { opacity: 1; transform: translateY(0); }
  @media (max-width: 991px) {
    .tips-grid { grid-template-columns: 1fr; }
    .doetips-section { padding: 60px 0; }
  }

.main-hero-bottom-section {
    padding: 80px 0; 
  }
  
  .main-hero-bottom-section .container {
    max-width: 1200px;
  }

  .hero-bottom-header {
    margin-bottom: 80px;
  }

  .seagull-head-wrapper {
    margin-bottom: 20px;
  }

  .seagull-head-icon {
    width: 160px;
    height: auto;
    display: inline-block;
  }

  .header-subtitle {
    font-family: 'brandontext', sans-serif;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .header-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .header-description {
    font-family: 'brandontext', sans-serif;
    font-size: 1.125rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .seagull-section {
    margin-bottom: 100px;
    position: relative;
  }

  .seagull-section:last-of-type {
    margin-bottom: 80px;
  }

  .section-gif-header {
    margin-bottom: 60px;
  }

  .gif-wrapper {
    position: relative;
    width: 100%;
    max-width: 200px;
    margin: 0 auto 30px;
    display: inline-block;
  }

  .seagull-gif {
    width: auto;
    height: 180px;
    display: block;
    margin-left: -15px;
  }
.holiday-seagull .seagull-gif {    margin-left: -15px;
}

.working-seagull  .seagull-gif {    margin-left: -55px;
}
  .section-gif-header .section-title {
    font-size: 2rem;
    font-weight: 500;
    color: #333;
    margin: 20px auto 0 auto;
    line-height: 1.3;
    text-align: center;
    position: relative;
    display: block;
    width: fit-content;
    padding: 15px 40px;
    overflow: hidden;
  }
  
  .section-title .title-text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 600;
  }
  
  .section-title .title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: skewX(-10deg) scaleX(0);
    transform-origin: left center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }
  
  .section-title.animated .title-bg {
    transform: skewX(-10deg) scaleX(1);
  }
  
.title-bg-1 {
    background-color: #C3922E;
}
  
  .title-bg-2 {
    background-color: #f3638d;
  }
  
  .title-bg-3 {
    background-color: #936f1e;
  }

  .seagull-hero-bottom-block .animate-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
  }

  .seagull-hero-bottom-block .animate-element.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  .seagull-hero-bottom-block .section-gif-header.animate-element {
    display: block;
  }
  
  .seagull-hero-bottom-block .section-gif-header .gif-wrapper {
    margin-bottom: 30px;
  }

  .section-row {
    margin-bottom: 50px;
    align-items: center;
  }

  .section-row:last-child {
    margin-bottom: 0;
  }

  .image-column {
    padding: 20px;
  }

  .content-column {
    padding: 20px 40px;
  }

  .photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border-radius: none;
    border: 4px solid #c3922e;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
  }

  .section-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: translateY(100%);
    transition: none;
  }

  .section-photo.active {
    opacity: 1;
    transform: translateY(0);
  }

  .section-photo.slide-up-in {
    animation: slideUpIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .section-photo.slide-up-out {
    animation: slideUpOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes slideUpIn {
    0% {
      opacity: 1;
      transform: translateY(100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideUpOut {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 1;
      transform: translateY(-100%);
    }
  }


  .content-wrapper {
    max-width: 500px;
  }

  .section-intro {
    font-family: 'brandontext', sans-serif;
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.7;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .feature-list li {
    font-family: 'brandontext', sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
  }

  .feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  .holiday-seagull .feature-list li:before {
    color: #e2c675;
  }
  
  .party-seagull .feature-list li:before {

    color: #f3638d;
  }
  
  .working-seagull .feature-list li:before {
    color: #936f1e;
  }

  .feature-list li strong {
    color: #333;
    font-weight: 600;
  }

  .hero-bottom-cta {
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
  }

  .cta-title {
    font-size: 2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
  }

  .cta-description {
    font-family: 'brandontext', sans-serif;
    font-size: 1.125rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
  }

  .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    font-family: 'brandontext', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
  }

  .cta-btn-primary {
    background-color: #5B7FBF;
    color: #ffffff;
    border-color: #5B7FBF;
  }

  .cta-btn-primary:hover {
    background-color: #4A6BA3;
    border-color: #4A6BA3;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 127, 191, 0.3);
  }

  .cta-btn-secondary {
    background-color: transparent;
    color: #333;
    border-color: #333;
  }

  .cta-btn-secondary:hover {
    background-color: #333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  @media (max-width: 991px) {
    .main-hero-bottom-section {
      padding: 60px 0;
    }

    .hero-bottom-header {
      margin-bottom: 60px;
    }

    .header-title {
      font-size: 2rem;
    }

    .seagull-section {
      margin-bottom: 70px;
    }

    .section-gif-header {
      margin-bottom: 40px;
    }

    .gif-wrapper {
      max-width: 150px;
    }

    .section-row {
      margin-bottom: 40px;
      flex-direction: column;
    }

    .image-column,
    .content-column {
      max-width: 100%;
      padding: 20px;
    }

    .content-column.order-lg-1 {
      order: 2;
    }

    .image-column.order-lg-2 {
      order: 1;
    }

    .content-wrapper {
      max-width: 100%;
      text-align: center;
    }

    .section-title {
      font-size: 1.75rem;
    }

    .feature-list li {
      text-align: left;
    }

    .photo-wrapper {
      max-width: 450px;
      margin-bottom: 20px;
    }
  }

  @media (max-width: 768px) {
    .main-hero-bottom-section {
      padding: 40px 0;
    }

    .seagull-head-icon {
      width: 80px;
    }

    .header-title {
      font-size: 1.75rem;
    }

    .header-description {
      font-size: 1rem;
    }

    .seagull-section {
      margin-bottom: 50px;
    }

    .section-title {
      font-size: 1.5rem;
    }

    .section-intro {
      font-size: 1rem;
    }

    .feature-list li {
      font-size: 0.9375rem;
      margin-bottom: 15px;
    }

    .hero-bottom-cta {
      padding: 40px 20px;
    }

    .cta-title {
      font-size: 1.5rem;
    }

    .cta-description {
      font-size: 1rem;
    }

    .cta-buttons {
      flex-direction: column;
      gap: 12px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
      width: 100%;
      max-width: 300px;
    }
  }

/* Mobile-only: hide hotel animation static block & floating video pin widgets */
@media (max-width: 768px) {
  #block-hetdok-hotelanimationstatic,
  .image-section,
  .video-pin-outer,
  .video-pin-recall {
    display: none !important;
  }

  /* Footer bottom menu: single column on mobile */
  .footer-menu-column ul {
    display: block;
  }
  .footer-menu-column li {
    margin-bottom: 12px;
  }

  /* Hide all footer menu items except "Over ons" on mobile */
  .footer-menu-column li:not(:has(a[href="/over-ons"])) {
    display: none !important;
  }
}

/* Mobile: ensure header logo (in primary_menu region inside .navbar-collapse) is shown, sized 200px and centered */
@media (max-width: 991px) {
  /* Force the collapsed navbar to render so the logo block inside is visible */
  .navbar .collapse.navbar-collapse,
  .navbar-collapse {
    display: block !important;
    flex-basis: 100%;
    width: 100%;
    background: transparent;
  }
  /* Hide every direct child of the collapse except the logo block */
  .navbar-collapse > *:not(#block-hetdok-logo) {
    display: none !important;
  }
  /* Hide the hamburger toggle since the menu stays collapsed */
  .navbar-toggler {
    display: none !important;
  }
  /* Center the logo block and size the image to 200px */
  #block-hetdok-logo {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
  }
  #block-hetdok-logo .header-logo {
    display: inline-block;
    text-align: center;
  }
  #block-hetdok-logo .header-logo img,
  #block-hetdok-logo .main-logo,
  .header-logo .main-logo {
    width: 140px !important;
    height: auto !important;
    max-width: 140px;
    margin: 0 auto;
    display: block;
  }
}

/* ========================================
   Mobile fixes (≤768px)
   ======================================== */
@media (max-width: 768px) {
  /* Hero title perfectly centered (was padding-left: 60px) */
  .hero-main-title {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
  }

  /* Rooms button capped to 200px max-width */
  .hero-btn-primary,
  .hero-buttons .btn-primary {
    max-width: 200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    align-items: center;
  }

  /* Seagull GIFs offsets per request */
  .seagull-gif {
    margin-left: -25px !important;
  }
  .holiday-seagull .seagull-gif {
    margin-left: -45px !important;
  }
  .working-seagull .seagull-gif {
    margin-left: -55px !important;
  }

  /* Events block: properly centered + constrained width */
  #block-hetdok-views-block-events-main-page-block-1 {
    padding-left: 15px;
    padding-right: 15px;
  }
  #block-hetdok-views-block-events-main-page-block-1 .container {
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
  #views-bootstrap-events-main-page-block-1 {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
  }
  #views-bootstrap-events-main-page-block-1 > [class*="col-"] {
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Footer bottom: move car (background image) above content so it doesn't overlap */
  .footer-bottom {
    margin-top: 0 !important;
    background-image: none !important;
    height: auto !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 20px 20px 20px !important;
    gap: 15px;
  }
  .footer-bottom::before {
    content: none !important;
  }
  .footer-image-section {
    margin: 0 !important;
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }

  /* Copyright: centered with extra spacing on mobile */
  .footer-copyright {
    text-align: center !important;
    margin-top: 25px;
    padding-bottom: 20px;
  }
  .footer-copyright p {
    text-align: center !important;
  }
}
