*{
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-color: #0045bd;
  background: url('./images/bg-grainy-blue.jpg');
  
}

/* Hide scrollbar for Chrome, Safari, Edge */
body::-webkit-scrollbar {
  display: none;
}


/* ---------- DESIGN TOKENS (CSS VARIABLES) ---------- */
:root {
  /* Colors */
  --brand-primary: #fff200;
  /* Cadmium Yellow */
  --brand-secondary: #fff0c9;
  /* Oasis */
  --bg: url('/images/bg-grainy-blue.jpg');
  /* Creamy White */
  --heading: #2B1F1A;
  /* Charcoal Brown */
  --text: #5A4A42;
  /* Warm Gray */
  --muted: #E7E0D5;
  /* light border / input */
  --highlight: #F5C242;
  /* Turmeric Yellow */
  --accent-mint: #d40315;
  /* optional-btn-bg */
  --white: #FFFFFF;
  --black: #000000;

  /* Spacing scale */
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 40px;
  --space-xl: 64px;
  --space-xxl: 96px;

  /* Typography sizes (desktop default) */
  --h1: 44px;
  /* hero */
  --h2: 28px;
  /* section title */
  --h3: 20px;
  /* card title */
  --text-lg: 18px;
  --text-md: 16px;
  --text-sm: 14px;

  /* Radii & shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --card-shadow: 0 8px 20px rgba(43, 31, 26, 0.06);
  --soft-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* ---------- Responsive breakpoints ---------- */
/* Mobile-first: default is mobile */
@media (min-width: 768px) {
  :root {
    --h1: 56px;
    --h2: 32px;
    --h3: 22px;
    --text-lg: 18px;
  }
}

@media (min-width: 1200px) {
  :root {
    --h1: 64px;
    --h2: 36px;
    --h3: 24px;
    --space-xl: 80px;
  }
}

/* ---------- Utility containers ---------- */
.ub-container {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--space-s);
  max-width: 1600px;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Common helpers */
.center {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* Screen reader only */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */


/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Main Skyline-like font */
body, p, a, li, nav, .nav-right-section a {
  font-family: "Mulish", sans-serif;
}

/* Section tagline (Skyline italic) */
.section-title .tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

/* Headings */
h1, h2, h3 {
  font-family: "Mulish", sans-serif;
  font-weight: 900;
}

a:focus,
a:hover {
  text-decoration: underline;
}

/* Home Page is CSS is Start Here */

/* Navigation */

.nav {
  /* margin-top:var(--space-s); */
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 10px;
  justify-content: space-between;
  align-items: center;
  background: transparent;  /* Transparent like Skyline Chili */
  color: white;
  z-index: 999;
  transition: 0.3s ease;
  background-color: #2B1F1A;

}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background:url('./images/bg-grainy-blue-dark.jpg'); /* your brand bg */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.5s ease;
  z-index: 1000;
  flex-direction: column;
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
}

.mobile-nav li {
  margin: 20px 0;
}

.mobile-nav a {
  font-size: 2rem;
  color: var(--brand-secondary);
  text-decoration: none;
}

.mobile-nav.active {
  right: 0;
}

@media (max-width: 1024px) {
  .nav-right-section {
    display: none; /* hide desktop menu */
  }

  .nav-toggle {
    display: flex;
  }
}

.no-scroll {
  overflow: hidden;
}

.nav-toggle {
  position: relative;
}

.nav-toggle span {
  transform-origin: center;
}

/* OPEN STATE */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  transform: rotate(-45deg) translate(4px, -4px);
}






.nav-left-section {
  /* background-color: var(--brand-primary); */
  height: 105px;
  width: 180px;
}

.nav-left-section img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin-left: -20px;
}

.nav-right-section {
  gap: var(--space-l);
}

.nav-right-section a {
  font-size: var(--text-lg);
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.book {
  background-color: var(--brand-primary);
  border-radius: var(--radius-sm);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 8px;
  padding-right: 8px;
  text-align: center;
  align-items: center;
  
}

.book a {
  color: var(--accent-mint);
}

/* update css code for navbar */

/* Make nav truly edge-to-edge and remove unexpected left gap */
.nav {
   position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(0);
  transition: transform 0.35s ease, background-color 0.3s ease;
  z-index: 999;
  background: transparent;
  
}

.nav.nav--hidden {
  transform: translateY(-120%);
}

.nav.nav--bg {
  background-color:#0045bd;
  backdrop-filter: blur(6px);
}

/* Use an inner container so page content stays aligned with .ub-container */
.nav .nav-inner {
  width: 100%;
  max-width: 1600px;        /* match .ub-container max-width */
  margin: 0 auto;
  padding-inline: var(--space-s); /* keeps same page padding for links/content */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo area: remove negative margin and let the inner container control spacing */
.nav-left-section {
  height: 105px;
  width: 180px;
  margin: 0;                /* reset any stray margins */
}

.nav-left-section img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin-left: -20px;           /* REMOVE the -20px shift */
  display: block;
}

/* Keep right section spacing but ensure it aligns inside inner container */
.nav-right-section {
  display: flex;
  gap: var(--space-l);
  align-items: center;
}

/* Optional: scrolled background (if you use JS to toggle .scrolled on .nav) */
.nav.scrolled {
  background-color: rgba(43,31,26,0.95);
  backdrop-filter: blur(6px);
}

.nav-right-section-left{
  display: flex;
  gap: var(--space-l);
  align-items: center;
}

/* animation for link btn */

.nav-right-section .nav-right-section-left a {
  position: relative;
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-right-section .nav-right-section-left a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--brand-primary); /* your red color */
  transition: width 0.3s ease;
}

.nav-right-section .nav-right-section-left a:hover::after {
  width: 100%;
}

.nav-right-section .nav-right-section-left a:hover {
  color: var(--brand-primary);
}

/* animation for book a table button */

.book {
  background-color: var(--brand-primary);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  transition: 0.3s ease;
  cursor: pointer;
}

.book:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.book a {
  color: var(--accent-mint);
  font-weight: 600;
}

/*Home page hero-section */

.hero-section{
  padding-top: 10vw;
  justify-content: center;
  padding-bottom: 130px;
  position: relative;
  align-items: center;
  overflow: hidden;  
  position: relative;
  isolation: isolate; 
  background: url('./images/bg-grainy-blue-dark.jpg'); 
  /* border-bottom: 1px solid #000000; */
}

.hero-section-left-section{
  /* background-color: yellow; */
  height: 370px;
  width: 450px;
  margin-top: -15vh;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;             /* so images don't block clicks */
  user-select: none;
  will-change: transform;
  /* Control the visible size of the image: */
  width: min(35vw, 420px); 
}

.small-screen{
  display: none;
}

.hero__side--left  { 
  left: -15px;  
  transform: translate(-10%, -50%); 
}
.hero__side--right { 
  right: 0; 
  transform: translate(10%, -50%); 
}

.hero_side--left,
.hero_side--right{
  position: absolute;
  z-index: 1;
}

.hero-section-left-section img{
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.hero-section-middle-section{
  position: relative;
  z-index: 5;
}

.hero-section-middle-section-top-section{
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 2.4vw;
  z-index: 3;                       /* above side images */
  max-width: 900px;
  /* padding: 2rem; */
  text-align: center;
  box-sizing: border-box;
}


.hero-section-middle-section-top-section-heading{
  width: 85%;
}

.hero-section-middle-section-top-section-heading h1{
  font-size: 8vw;
  line-height: 8vw;
  color:var(--brand-primary);
  position: relative;
  z-index: 1;
  align-items: center;
  text-align: center;
  /* letter-spacing: px; */
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.hero-section-middle-section-top-section-para-text{
  width: 65%;
  padding-top: 2.5vw;
}

.hero-section-middle-section-top-section-para-text p{
  font-size: 19px;
  color: var(--brand-secondary);
  word-spacing: 1px;
  line-height: 3.5vh;
}

.hero-section-middle-section-middle-section{
  padding-top: 60px;
  gap:10px; 
  justify-content: center;
  align-items: center;
}

.hero-section-middle-section-middle-section-booking-table-btn,
.hero-section-middle-section-middle-section-our-menu-btn{
  border-radius: 26px;
  padding-top:10px;
  padding-bottom: 10px;
  padding-right: 18px;
  padding-left: 18px;
  border: solid 1px black;
  cursor: pointer;
  gap:14px;
}

.arrow{
  font-size: 20px;
  color: black;
}

.hero-section-middle-section-middle-section-booking-table-btn{
  background-color: var(--brand-primary);
}

.hero-section-middle-section-middle-section-booking-table-btn:hover,
.hero-section-middle-section-middle-section-our-menu-btn:hover {
  background-color: black;
  color: var(--brand-secondary);
}

.hero-section-middle-section-middle-section-booking-table-btn:hover .arrow,
.hero-section-middle-section-middle-section-our-menu-btn:hover .arrow {
  color: var(--brand-secondary);
}


.hero-section-middle-section-middle-section-booking-table-btn p,
.hero-section-middle-section-middle-section-our-menu-btn p{
  font-weight: 600;
  font-size: 20px;
}

.hero-section-middle-section-middle-section-our-menu-btn{
  background-color: var(--brand-secondary);
  font-weight: 600;
  font-size: var(--text-md);
}

.hero-section-middle-section-bottom-section{
  padding-top: 40px;
  gap:30px;
}

.hero-section-middle-section-bottom-section p{
  font-size: var(--text-lg);
  color: var(--brand-secondary);
  display: inline-block;
  position: relative;
  border-bottom: 3px solid var(--black);
  padding-bottom: 1px; /* space between text and line */
  display: inline-block;
  font-weight: 600;
}


.hero-section-right-section-top-section{
  /* background-color: brown; */
  height: 250px;
  width: 280px;
  margin-bottom: 50px;
  margin-top: -30vh;
  position: absolute;
  top: 10%;
  left: -50px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;             /* so images don't block clicks */
  user-select: none;
  will-change: transform;
  /* Control the visible size of the image: */
  width: min(35vw, 420px); 
}

.hero-section-right-section-top-section img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section-right-section-bottom-section{
  /* background-color: chartreuse; */
  height: 300px;
  width: 330px;
  position: absolute;
  top: 50%;
  margin-top: 15vw;
  left: -260px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;             /* so images don't block clicks */
  user-select: none;
  will-change: transform;
  /* Control the visible size of the image: */
  width: min(35vw, 420px); 
}

.hero-section-left-section-bottom{
  height: 250px;
  width: 290px;
  position: absolute;
  top: 120%;
  margin-top: 5vw;
  left:10%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;             /* so images don't block clicks */
  user-select: none;
  will-change: transform;
  /* Control the visible size of the image: */
  width: min(35vw, 420px); 
}

.hero-section-right-section-bottom-section img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* papular-signature-dishes-section */

/* Popular Section */
.popular-section {
  padding: 80px 0;
  /* background:#1a3c95; */
  background: url('./images/bg-grainy-blue-dark.jpg');
  padding-bottom: 95px;
}

.popular-section-divider{
  padding-top: 135px;
  padding-bottom: 0px;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--brand-primary);
  margin-bottom: 6px;
}

.section-title h2 {
  font-family: "Mulish", sans-serif;
  font-size: 38px;
  font-weight: 800;
  color:var(--brand-secondary);
  margin: 0;
}

/* Grid Layout */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Dish Card */
.dish-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.07);
  transition: 0.25s ease;
  background-color: var(--bg);
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}

/* Food Image */
.dish-card img {
  width: 180px;
  height: auto;
  margin-bottom: 18px;
  display: block;
  margin-inline: auto;
}

/* Dish Name */
.dish-card h3 {
  font-family: "Mulish", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color:var(--brand-secondary);
  margin-bottom: 6px;
}

/* Dish Description */
.dish-desc {
  font-size: 15px;
  color:var(--brand-secondary);
  margin-bottom: 12px;
}

/* Price */
.price {
  font-size: 18px;
  font-weight: 700;
  color: rgb(32, 156, 32);
}

.popular-section a{
  text-decoration: none;
}


@media (max-width: 900px) {
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .popular-grid {
    grid-template-columns: 1fr;
  }
}

/* ABOUT SECTION FULL WIDTH */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content image"; /* 👈 FORCE ORDER */
  min-height: 100vh;
  background: url('./images/bg-grainy-blue-dark.jpg');
}

.about-section a{
  text-decoration: none;
}

/* LEFT IMAGE — FULL HEIGHT */
.about-image {
  width: 100%;
  height: 100%;
  grid-area: image; /* 👈 RIGHT */
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image {
  position: relative;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0)
  );
}


/* RIGHT CONTENT WRAPPER */
.about-content-wrapper {
  display: flex;
  align-items: center;
  padding: 80px;
  background: #fffaed;
  grid-area: content; /* 👈 LEFT */
}

/* CONTENT */
.about-content .tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--accent-mint);
  margin-bottom: 8px;
}

.about-content h2 {
  font-family: "Mulish", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
}

.about-content .about-text {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--accent-mint);
  color: #fff200;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: var(--black);
  transform: translateY(-3px);
  color: var(--brand-secondary)
}


@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "content";
    min-height: auto;
  }

  .about-image {
    height: 320px;
  }

  .about-content-wrapper {
    padding: 50px 24px;
    text-align: center;
  }

  .about-content .about-text {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Divider svg */

.section {
  position: relative;
  overflow: hidden;
}

.uttam-checker-divider {
  /* position: absolute; */
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  background: url('./images/bg-grainy-blue-dark.jpg');
}

.uttam-checker-divider svg {
  display: block;
  width: 100%;
  height: 90px;
}

/* why chose uttam bhog's section css */

.why-section-divider {
  background: url('./images/bg-grainy-cracker.jpg');
  padding-bottom: 60px;
}

/* WHY SECTION */
.why-section {
  padding-bottom: 90px;
  background: url('./images/bg-grainy-cracker.jpg');
}

.why-section .section-title p{
  color: var(--accent-mint);
}

.why-section .section-title h2{
  color: var(--black);
  padding-bottom: 30px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

/* CARD */
.why-card {
  position: relative;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: #0a48bb; /* blue bottom like Skyline */
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
}

/* CURVED TOP SHAPE */
.why-card::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 180%;
  height: 240px;
  background: #fff0c9; /* light cream */
  border-radius: 50%;
  z-index: 1;
}

/* ICON */
.why-card-icon {
  position: relative;
  z-index: 2;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-icon i {
  font-size: 42px;
  color: var(--accent-mint);
}

/* CONTENT */
.why-card-content {
  position: relative;
  z-index: 2;
  padding: 32px 24px;
  text-align: center;
  color: var(--brand-secondary);
}

.why-card-content h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.why-card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #f2f2f2;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* testmonial section */

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 120px 0;
  padding-bottom: 0;
  background: url('./images/bg-grainy-cracker.jpg'); /* soft cream */
}

.testimonials-section .section-title .tagline{
  color:var(--accent-mint);
}

.testimonials-section .section-title h2{
  color:var(--black);
}

.testimonial-section-divider{
  padding-top: 90px;
  padding-bottom: 0px;
}

.testimonial-section-divider svg{
  transform: scaleY(-1);
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

/* CARD */
.testimonial-card {
  background: #fffaed;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* STARS */
.testimonial-card .stars {
  color: #fff200;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* REVIEW TEXT */
.testimonial-card .review {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 24px;
}

/* NAME */
.testimonial-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #222;
  margin-bottom: 4px;
}

/* ROLE */
.testimonial-card span {
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-section {
    padding: 80px 0;
  }
}

/* CTA SECTION */


.cta-section {
  padding: 120px 0;
  padding-bottom: 0;
  padding-top: 180px;
  min-height: 100vh;
  background: url('./images/bg-grainy-blue.jpg');
  text-align: center;
}

.cta-section-checker-divider{
  padding-top: 150px;
  background: url('./images/bg-grainy-blue.jpg');
}

.cta-section a{
  text-decoration: none;
}

/* CONTENT */
.cta-content {
  max-width: 720px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* TAGLINE */
.cta-tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 12px;
}

/* HEADING */
.cta-content h2 {
  font-family: "Mulish", sans-serif;
  font-size: 47px;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 20px;
  line-height: 1.3;
  
}

/* TEXT */
.cta-text {
  font-size: 19px;
  color: var(--brand-secondary);
  line-height: 1.3;
  margin-bottom: 40px;
  width: 80%;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 34px;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}

/* PRIMARY */
.cta-btn.primary {
  background: #111;
  color: #fff200;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
}

/* SECONDARY */
.cta-btn.secondary {
  background: transparent;
  border: 2px solid #111;
  color: #111;
}

.cta-btn.secondary:hover {
  background: #111;
  color: #fff200;
}

/* MOBILE */
@media (max-width: 600px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 32px;
  }
}

/* location and contact section */

/* LOCATION SECTION */
.location-section {
  padding: 120px 0;
  padding-top:100px;
  padding-bottom: 0;
  background: url('./images/bg-grainy-blue.jpg');
}

.location-section .section-title{
  padding-bottom: 30px;
}

.location-section a{
  text-decoration: none;
}

.location-section .section-title h2{
  color: var(--brand-secondary);
}

/* GRID */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
  margin-top: 60px;
}

/* DETAILS */
.location-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location-item h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--black);
}

.location-item p,
.location-item a {
  font-size: 16px;
  color: var(--brand-secondary);
  line-height: 1.6;
  text-decoration: none;
}

/* BUTTON */
.location-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 34px;
  background: #111;
  color: #fff200;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
  width: fit-content;
}

.location-btn:hover {
  transform: translateY(-3px);
}

/* MAP */
.location-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    height: 320px;
  }
}


/* FOTTER SECTION */
/* FOOTER WRAPPER */
.ub-footer {
  background: url('./images/bg-grainy-blue.jpg');
  color: #fff;
  overflow: hidden;
}

/* BRAND EMOTION */
.ub-footer-brand {
  position: relative;
  padding: 120px 80px 80px;
}

.footer-bg-text {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  font-family: "Playfair Display", serif;
  font-size: 160px;
  font-style: italic;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
}

.footer-brand-content {
  position: relative;
  max-width: 520px;
}

.footer-brand-content h3 {
  font-size: 34px;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.footer-brand-content p {
  font-size: 16px;
  color: var(--brand-secondary);
}

/* INFO GRID */
.ub-footer-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 80px 80px;
}

.footer-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--brand-primary);
}

.footer-box p,
.footer-box a {
  font-size: 15px;
  color: #eaeaea;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.footer-box a:hover {
  color: var(--brand-primary);
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  padding: 14px;
  font-size: 14px;
  background: rgba(0,0,0,0.18);
}

/* MOBILE */
@media (max-width: 900px) {
  .ub-footer-brand {
    padding: 80px 24px 60px;
  }

  .footer-bg-text {
    font-size: 90px;
    left: 24px;
  }

  .ub-footer-info {
    grid-template-columns: 1fr;
    padding: 0 24px 60px;
    gap: 28px;
  }
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: currentColor;
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 22px;
  height: 22px;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: 0.3s ease;
}

.footer-social a:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.floating-cta {
  gap: 10px;
}

.cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}




















