.card-content {
  padding: 20px;
}

.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: linear-gradient(
    135deg,
    #f59e0b 0%,
    #fbbf24 45%,
    #f97316 100%
  );
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(245, 158, 11, 0.35);
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

.navbar {
  max-width: 1300px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #111827;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: none;
  text-shadow: 0 2px 10px rgba(255,255,255,0.35);
}

header.main-header {
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

#nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

#nav-menu a {
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  background: #2563eb;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
}

.article {
  background: white;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.article h1 {
  margin-bottom: 20px;
}

.article h2 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.article p {
  margin-bottom: 16px;
}

footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 30px;
  margin-top: 60px;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f7fb;
  color: #222;
}
nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

nav a:hover {
  color: #fbbf24;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #fbbf24;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  nav {
    margin-top: 15px;
  }

  nav a {
    display: inline-block;
    margin: 8px;
  }
}

.slide { 
  transform: scale(1.05);
  animation: slowZoom 14s ease-in-out infinite;
}

@keyframes slowZoom {
  0% {
    transform: scale(1.05);
  }

  50% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1.05);
  }
}






.site-banner {
  background: #111827;
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
  letter-spacing: 0.3px;
}

.main-header {
  top: 42px;
}

.grid {
  display: grid;
  gap: 25px;
}

.card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  max-width: 700px;
}

.card img {
  width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.card-content {
  flex: 1;
}

.card-content h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.card-content p {
  font-size: 15px;
  margin-bottom: 12px;
}


.menu-toggle{
display:none;
}

@media(max-width:768px){

.menu-toggle{
display:flex;
width:46px;
height:46px;
border-radius:50%;
border:1px solid rgba(255,255,255,0.25);
background:rgba(255,255,255,0.12);
backdrop-filter:blur(12px);
cursor:pointer;
align-items:center;
justify-content:center;
flex-direction:column;
gap:5px;
}

.menu-toggle span{
width:20px;
height:2px;
background:#111827;
border-radius:5px;
transition:0.3s ease;
}

.navbar{
flex-direction:row;
}

#nav-menu{
position:absolute;
top:82px;
left:18px;
right:18px;
display:flex;
flex-direction:column;
gap:0;
background:rgba(10,10,10,0.94);
backdrop-filter:blur(22px);
border:1px solid rgba(255,255,255,0.12);
border-radius:24px;
padding:16px;
opacity:0;
visibility:hidden;
transform:translateY(-15px);
transition:0.35s ease;
box-shadow:0 25px 60px rgba(0,0,0,0.35);
}

#nav-menu.active{
opacity:1;
visibility:visible;
transform:translateY(0);
}

#nav-menu a{
width:100%;
padding:15px 16px;
margin:0;
border-radius:14px;
font-size:15px;
color:white;
}

#nav-menu a::after{
display:none;
}

#nav-menu a:hover{
background:rgba(255,255,255,0.08);
color:#fbbf24;
}

.menu-toggle.active span:nth-child(1){
transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
opacity:0;
}

.menu-toggle.active span:nth-child(3){
transform:translateY(-7px) rotate(-45deg);
}

}

.destination-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.destination-link:hover .mini-destination {
  transform: translateY(-3px);
  transition: 0.3s ease;
}

}

.restaurant-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:18px;
  
  .restaurant-details a{
  color:#1e3a8a;
  text-decoration:none;
  font-weight:600;
}

.restaurant-details a:hover{
  text-decoration:underline;
}
}

.cookie-banner{
position:fixed;
bottom:20px;
left:20px;
right:20px;
max-width:700px;
margin:auto;
background:#111;
color:#fff;
padding:20px;
border-radius:18px;
z-index:99999;
display:none;
box-shadow:0 15px 40px rgba(0,0,0,.3);
}

.cookie-content h4{
margin-top:0;
}

.cookie-buttons{
display:flex;
gap:10px;
margin-top:15px;
flex-wrap:wrap;
}

.cookie-buttons button,
#cookie-preferences button{
padding:10px 16px;
border:none;
border-radius:999px;
cursor:pointer;
font-weight:600;
}

.cookie-buttons button:first-child

.cookie-buttons button:nth-child(2){
background:#333;
color:#fff;
}

.cookie-buttons button:nth-child(3){
background:#555;
color:#fff;
}

#cookie-preferences{
margin-top:15px;
}

@media(max-width:700px){
#cookie-banner{
left:10px;
right:10px;
bottom:10px;
}
}


/* FUTURE NAV STYLE */
@media (min-width: 769px) {
  #nav-menu a {
    position: relative;
    padding: 8px 2px !important;
    color: #111827 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }

  #nav-menu a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #111827;
    border-radius: 999px;
    transform: translateX(-50%);
    transition: 0.3s ease;
    box-shadow: 0 0 12px rgba(17,24,39,0.45);
  }

  #nav-menu a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 12px rgba(255,255,255,0.75);
  }

  #nav-menu a:hover::after {
    width: 100%;
    background: #ffffff;
  }
}


/* EXCEPTIONAL VISITARABIAHUB LOGO */
.logo {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #111827;
}

.brand-mark {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-mark::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 65%);
  filter: blur(8px);
  opacity: 0.8;
}

.brand-mark svg {
  width: 74px;
  height: 74px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.65));
}

.logo-line {
  fill: none;
  stroke: #111827;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-line.thick {
  stroke-width: 5;
}

.logo-fill {
  fill: #111827;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text,
.brand-text-gold {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111827;
  text-shadow: 0 2px 12px rgba(255,255,255,0.45);
}

.brand-text-gold {
  color: #111827;
  margin-left: 0;
}

.brand-tagline {
  margin-top: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: rgba(17,24,39,0.72);
}

/* DESKTOP LOGO AREA */
@media (min-width: 769px) {
  .logo {
    min-width: 390px;
    border-right: 1px solid rgba(17,24,39,0.22);
    padding-right: 38px;
  }
}

/* MOBILE LOGO */
@media (max-width: 768px) {
  .brand-logo {
    gap: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-mark svg {
    width: 48px;
    height: 48px;
  }

  .logo-line {
    stroke-width: 5;
  }

  .logo-line.thick {
    stroke-width: 6;
  }

  .brand-text,
  .brand-text-gold {
    font-size: 18px;
    letter-spacing: 0.5px;
  }

  .brand-tagline {
    display: none;
  }

  .logo {
    min-width: auto;
    padding-right: 0;
    border-right: none;
  }
}

/* PREMIUM FLOATING HIGHLIGHT BOXES */
.quick-highlights {
  margin-top: -70px;
  position: relative;
  z-index: 20;
}

.highlight-box {
  background: rgba(255,255,255,0.96) !important;
  border-radius: 28px !important;
  box-shadow: 0 25px 60px rgba(0,0,0,0.14) !important;
  border: 1px solid rgba(255,255,255,0.8) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.highlight-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.22) !important;
}

.highlight-box h2 {
  color: #d99a00 !important;
  font-weight: 900 !important;
  font-size: 36px !important;
}

.highlight-box p {
  color: #111827 !important;
  font-weight: 500;
}