*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'poppins',sans-serif;
}

body{
  background:#f5f5f5;
}

/* NAVBAR */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:80px;
  padding:8px 40px;
  background:#fff;
  position:relative;
  z-index:1000;
  
}



.logo .mainlogo{
  height: 72px;
  width: 72px;
  object-fit: contain;
  display:block;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:20px;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-size:14px;
}

.btn{
  background:#39000f;
  color:#fcd778;
  padding:8px 16px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  text-decoration:none;
}

.nav-links a.btn {
  color:#fcd778;
}

/* HAMBURGER */
.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* ===== HERO SECTION ===== */
.hero{
  min-height:100vh;
  background:url('Images/DSC03234.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  padding:20px;
}

/* Overlay */
.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(14, 14, 14, 0.247),
    rgba(51, 36, 15, 0.158)
  );
}

/* Content */
.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  max-width:900px;
  width:100%;
}

/* Heading */
.hero h1{
  font-size:48px;
  font-weight:600;
  line-height:1.2;
}

/* Subtext */
.hero p{
  margin-top:12px;
  font-size:16px;
  color:#e6f7f5;
}

















/* Heading Animation */
.hero h1 {
  font-size: 50px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease forwards;
}

/* Paragraph Animation */
.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: auto;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease forwards;
  animation-delay: 0.5s;
}

/* Keyframes */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Brand Wordmark */
.brand-wordmark {
  color:#ffe28a !important;
  display:inline-block;
  font-family:'Playfair Display', Georgia, serif !important;
  font-size:1.25em;
  font-weight:800;
  letter-spacing:0.8px;
  text-transform:none;
  -webkit-text-stroke:0.7px #9b6400;
  text-shadow:
    0 1px 0 #7a4a00,
    0 2px 0 #b47a08,
    0 0 16px rgba(255,226,138,0.7),
    0 10px 22px rgba(0,0,0,0.48);
  animation:popIn 0.8s ease forwards;
}
/* Animation */
@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
















/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:992px){
  .hero h1{
    font-size:36px;
  }

}

/* Mobile */
@media(max-width:768px){
  .hero{
    padding:40px 15px;
  }

  .hero h1{
    font-size:26px;
  }

  .hero p{
    font-size:14px;
  }

  
}

/* MOBILE */
@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:70px;
    right:20px;
    width:240px;

    /* FIXED BACKGROUND */
    background:#ffffff;

    flex-direction:column;
    padding:20px;
    border-radius:12px;
    box-shadow:0 15px 30px rgba(0,0,0,0.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    transition:all 0.3s ease;

    z-index:9999;
  }

  .nav-links.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .nav-links a{
    padding:10px 0;
    color:#333;
  }

  .btn{
    width:100%;
    margin-top:10px;
  }

  .hero{
    min-height:100vh;
  }

  .hero h1{
    font-size:26px;
  }

  .hero p{
    font-size:14px;
  }


}

.featured-rooms {
  padding: 40px 20px;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.header h2 {
  margin: 0;
  font-size: 26px;
  
}

.header .featured-tagline {
  color: #111;
  margin-top: 5px;
  font-size: 14px;
}

/* SLIDER */
.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 14px;
}

.slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.card {
  flex: 0 0 calc(25% - 15px);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  border: 1px solid #dfdfdf;
  min-width: 0;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}

.title-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.title-price h3 {
  font-size: 16px;
  margin: 0;
  line-height: 1.35;
  min-width: 0;
}

.title-price span {
  color: #39000f;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}

.location {
  font-size: 13px;
  color: #888;
  margin: 5px 0;
}

.info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 10px;
  color: #555;
}

/* TAG */
.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: teal;
  color: #fff;
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 6px;
}

.tag.green { background: #00a86b; }
.tag.blue { background: #3498db; }
.tag.orange { background: #f39c12; }

/* ✅ RESPONSIVE BREAKPOINTS */

/* Tablet */
@media (max-width: 992px) {
  .card {
    flex: 0 0 calc(50% - 10px);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .featured-rooms {
    padding: 32px 16px;
  }

  .featured-rooms .header {
    display: block;
    margin-bottom: 18px;
  }

  .slider {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 2px 14px;
    -webkit-overflow-scrolling: touch;
  }

  .card {
    flex: 0 0 86%;
    width: auto;
    border-radius: 12px;
  }

  .card img {
    height: 210px;
  }

  .card-body {
    padding: 16px;
  }

  .title-price {
    flex-direction: column;
    gap: 6px;
  }

  .title-price h3 {
    font-size: 17px;
  }

  .title-price span {
    font-size: 15px;
  }

  .featured-rooms .bottom {
    gap: 10px;
    align-items: stretch;
  }

  .featured-rooms .price,
  .featured-rooms .book-now-link {
    flex: 1;
  }

  .featured-rooms .price a,
  .featured-rooms .book-now-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 8px;
  }

  .featured-rooms .price a {
    border: 1px solid #39000f;
  }

  .header h2 {
    font-size: 22px;
  }
}
.features {
  padding: 60px 20px;
  background: #f8f9fb;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #111;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.feature-card {
  background: #f1f2f4;
  padding: 25px;
  border-radius: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */
.icon {
  width: 45px;
  height: 45px;
  background: #d1f0ea;
  color: #00a86b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 15px;
}

/* TEXT */
.feature-card h3 {
  margin: 10px 0;
  font-size: 18px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* ✅ RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 22px;
  }

  .feature-card {
    padding: 20px;
    padding-bottom: 50px;
  }
}
.hotel-deals {
  background:linear-gradient(
    rgba(202, 156, 5, 0.9),
    rgba(202, 168, 15, 0.55)
  );
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #fff;
}

.container {
  max-width: 1200px;
  padding-bottom: 50px;
  margin: auto;
  
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.header h2 {
  margin: 0;
  font-size: 28px;
}

.header p {
  margin-top: 5px;
  color: #fff;
  font-size: 14px;
}

.view-btn {
  background: #e6f0ef;
  color: #0f5c53;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
}

/* GRID */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.deal-card {
  background: #fff;
  color: #000;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
}

.deal-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.image {
  position: relative;
}

.image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
}

/* CONTENT */
.content {
  padding: 15px;
}

.content h3 {
  margin: 0 0 5px;
}

.location {
  font-size: 13px;
  color: #777;
}

.rating {
  font-size: 13px;
  color: #f39c12;
  margin: 8px 0;
}

.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.bottom .hotel-button{
  background-color: #39000f;
  color: #fcd778;
}

.price {
  font-size: 15px;
  color: #39000f;
  font-weight: bold;
}
.price a {
  font-size: 15px;
  color: #39000f;
  font-weight: bold;
  text-decoration: none;
}

.price small {
  font-size: 12px;
  color: #555;
}

.bottom button,
.bottom .book-now-link {
  background: #39000f;
  color: #fcd778;
  border: none;
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
}

/* ✅ RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery{
    max-width: 992px;
    margin: auto;
    padding:50px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .deals-grid {
    grid-template-columns: 1fr;
  }

  .header h2 {
    font-size: 22px;
  }

  .image img {
    height: 180px;
  }
  .gallery{
    max-width: 600px;
    margin: auto;
    padding:30px;
  }
}

.gallery {
  max-width: 1200px;
  padding-bottom: 60px;
  padding-top: 60px;
  margin: auto;  
}

.gallery-grid{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.gallery p {
  color: #666;
  margin-bottom: 25px;
}

/* FILTER BUTTONS */
.filters {
  display: flex;
  justify-content: left;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}


/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ITEM */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* HIDE CLASS */
.hide {
  display: none;
}


.my-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0,0,0,0.55);
  justify-content: center;
  align-items: center;
}

.my-lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.my-close {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ✅ RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery{
    max-width: 1200px;
    padding-top: 60px;
    padding-bottom: 60px;
    margin: auto;
  }
}



/* Mobile */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery h2 {
    font-size: 24px;
  }

  .gallery-item img {
    height: 200px;
  }
}

/* Best places to visit */


.places {
  padding: 60px 20px;
  background: #f8f9fb;
  text-align: left;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.places h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 35px;
}

/* GRID */
.places-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.place-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
  text-align: left;
  border:1px solid #d1d1d1;
}

.place-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.image {
  position: relative;
}

.image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #d1f0ea;
  color: #0f5c53;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;

}

/* CONTENT */
.content {
  padding: 15px;
}

.content h3 {
  margin-bottom: 5px;
}

.content p {
  font-size: 14px;
  color: #666;
  padding-bottom: 15px;
}

/* INFO */
.info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin: 10px 0;
  color: #555;
}

/* BUTTON */
.content button {
  width: 50%;
  background: #1abc9c;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}
.content .get-irection-btn {
  width: 100%;
  background: #39000f;
  color: #fcd778;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

/* ✅ RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .places-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .places-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .places-grid::-webkit-scrollbar {
    display: none;
  }

  .place-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .places h2 {
    font-size: 24px;
  }

  .image img {
    height: 180px;
  }
}

/*  Cta Section */

.contact-section {
  padding: 60px 30px;
  background: #f0f0f0;
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT */
.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.contact-left p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item span {
  background: #d1f2eb;
  padding: 10px;
  border-radius: 8px;
  margin-right: 12px;
}

.description-left-contact{
  padding-bottom: 40px;
  }

.contact-map-link {
  color: #39000f;
  font-weight: 600;
  text-decoration: none;
}

.contact-map-link:hover {
  text-decoration: underline;
}

/* RIGHT */
.contact-right {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-right h3 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #39000f;
  color: #fcd778;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #39000f;
}

.form-status {
  margin-top: 10px;
  font-size: 14px;
}

.form-status.success {
  color: #136f2d;
}

.form-status.error {
  color: #b42318;
}

.policy-hero {
  background: #faf8f4;
  border-bottom: 1px solid #eadfce;
  padding: 150px 20px 70px;
  text-align: center;
}

.policy-hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-hero h1 {
  color: #39000f;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 16px;
}

.policy-hero p {
  color: #5f574f;
  font-size: 17px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 680px;
}

.policy-section {
  background: #fff;
  padding: 64px 20px 86px;
}

.policy-wrapper {
  max-width: 840px;
  margin: 0 auto;
}

.policy-wrapper h2 {
  color: #39000f;
  font-size: 22px;
  font-weight: 600;
  margin: 34px 0 10px;
}

.policy-wrapper h2:first-of-type {
  margin-top: 0;
}

.policy-wrapper p {
  color: #514c46;
  line-height: 1.8;
  margin-bottom: 12px;
}

.policy-wrapper a {
  color: #39000f;
  font-weight: 600;
}

.policy-updated {
  color: #777;
  font-size: 14px;
  margin-bottom: 24px;
}

.booking-hero {
  background: #faf8f4;
  border-bottom: 1px solid #eadfce;
  padding: 150px 20px 72px;
  text-align: center;
}

.booking-hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.booking-eyebrow {
  color: #8a6b20;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.booking-hero h1 {
  color: #39000f;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 16px;
}

.booking-hero p {
  color: #5f574f;
  font-size: 17px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 680px;
}

.booking-section {
  background: #fff;
  padding: 70px 20px;
}

.booking-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.booking-summary,
.booking-form-card {
  border: 1px solid #eadfce;
  border-radius: 12px;
  padding: 34px;
  background: #fff;
}

.booking-summary h2,
.booking-form-card h2 {
  color: #39000f;
  font-size: 28px;
  margin-bottom: 12px;
}

.booking-summary p {
  color: #5f574f;
  line-height: 1.7;
}

.booking-price-panel {
  background: #39000f;
  color: #fcd778;
  border-radius: 10px;
  padding: 22px;
  margin: 28px 0;
}

.booking-price-panel span {
  display: block;
  color: #fff7df;
  font-size: 13px;
  margin-bottom: 8px;
}

.booking-price-panel strong {
  display: block;
  font-size: 24px;
}

.booking-room-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-room-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #f0e6d8;
  color: #514c46;
}

.booking-room-list li:last-child {
  border-bottom: none;
}

.booking-room-list strong {
  color: #39000f;
  white-space: nowrap;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-field label {
  display: block;
  color: #5f574f;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-field select {
  margin-bottom: 15px;
}

@media (max-width: 900px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .booking-hero h1 {
    font-size: 36px;
  }

  .booking-summary,
  .booking-form-card {
    padding: 24px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-left h2 {
    font-size: 24px;
  }
}

.footer {
  background: #39000f;
  color: #cbd5e1;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO */
.logo {
  font-size: 22px;
  color: #fff;
}

.logo span {
  color: #14b8a6;
}

/* TEXT */
.footer-col p {
  margin: 15px 0;
  line-height: 1.6;
}
.footer-col .logo{
  color: #fcd778;
  font-size: 25px;
}
/* LINKS */
.footer-col h3 {
  margin-bottom: 15px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #14b8a6;
}

/* SOCIAL */
.socials a {
  display: inline-block;
  background: #fcd778;
  color: #6d6d6d;
  padding: 15px;
  border-radius: 8px;
  font-size: 12px;
  text-decoration: none;
}
.socials a:hover {
  background: #ffffff;
  color: #6d6d6d;
  
}


/* NEWSLETTER */
.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.newsletter button {
  padding: 10px 15px;
  background: #fcd778;
  border: none;
  border-radius: 6px;
  color: #6b6b6b;
  cursor: pointer;
}

.newsletter button:hover {
  background: #ffffff;
  color: #6b6b6b;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #1e3a5f;
  margin-top: 40px;
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 MOBILE */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter {
    flex-direction: column;
  }

  .socials a {
    display: inline;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #fcd778;
  border-radius: 10px;
  color: #808080;
  font-size: 20px;
  text-decoration: none;
  }
}














/* contact us form's css code shown from below here */

.response-page {
  min-height: 72vh;
  padding: 140px 20px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(20, 20, 20, 0.55), rgba(57, 0, 15, 0.72)), url('Images/contactus.jpg') center/cover no-repeat;
}

.response-panel {
  width: min(620px, 100%);
  padding: 46px 34px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}

.response-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
}

.response-success .response-icon {
  background: #1f8f54;
}

.response-error .response-icon {
  background: #b83232;
}

.response-panel h1 {
  margin: 0 0 12px;
  color: #39000f;
  font-size: 34px;
  line-height: 1.2;
}

.response-panel p {
  margin: 0 auto;
  max-width: 480px;
  color: #555;
  line-height: 1.7;
}

.response-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.response-btn {
  min-width: 145px;
  padding: 13px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.response-btn.primary {
  background: #39000f;
  color: #fff;
}

.response-btn.secondary {
  border: 1px solid #39000f;
  color: #39000f;
}

.response-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .response-page {
    padding-top: 115px;
  }

  .response-panel {
    padding: 36px 22px;
  }

  .response-panel h1 {
    font-size: 28px;
  }
}

/* ===== HERO SECTION ===== */

.hero-contact{
  min-height:100vh;
  background:url('Images/Reception.jpeg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  padding:20px;
}

/* Overlay */
.hero-contact::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(14, 14, 14, 0.568),
    rgba(31, 20, 4, 0.349)
  );
}

.hero-contact .hero-content{
  max-width:980px;
}

.contact-brand-heading{
  color:#fcd778;
  font-size:clamp(42px, 7vw, 82px);
  line-height:1;
  font-weight:600;
  letter-spacing:6px;
  text-transform:uppercase;
  text-shadow:0 10px 22px rgba(0,0,0,0.55), 0 0 24px rgba(252,215,120,0.25);
  margin-bottom:22px;
}

.contact-brand-heading span{
  display:block;
  color:#fff7df;
  font-size:clamp(15px, 2vw, 22px);
  font-weight:400;
  letter-spacing:4px;
  margin-bottom:14px;
  text-transform:uppercase;
}

.contact-brand-heading::after{
  content:'';
  display:block;
  width:110px;
  height:2px;
  margin:22px auto 0;
  background:#fcd778;
}

.hero-contact .hero-content p{
  max-width:680px;
  margin:0 auto;
  font-size:17px;
  line-height:1.8;
  color:#fff7df;
}
.hero-contact .hero-content h1{
  font-size:48px;
  font-weight:600;
  line-height:1.2;
}













@media(max-width:768px){
  .contact-brand-heading{
    font-size:38px;
    letter-spacing:3px;
  }

  .contact-brand-heading span{
    font-size:14px;
    letter-spacing:2px;
  }

  .hero-contact .hero-content p{
    font-size:14px;
  }
}


















/* Standard room details page css code shown from below here */

.avx-main-holder{
  width:100%;
  padding:50px 7%;
}

.avx-grid-layout{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
}

/* IMAGE SECTION */

.avx-main-room-image{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:24px;
}

.avx-gallery-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  margin-top:15px;
}

.avx-gallery-row img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:20px;
}

/* TITLE */

.avx-room-titlebox{
  margin-top:30px;
}

.avx-room-titlebox h1{
  font-size:36px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:15px;
}

.avx-price-tag{
  color:#39000f;
  font-size:24px;
}

.avx-room-titlebox p{
  margin-top:10px;
  color:#666;
}

/* FACILITIES */

.avx-feature-wrapper{
  margin-top:40px;
}

.avx-feature-wrapper h2{
  font-size:26px;
  margin-bottom:25px;
}

.avx-feature-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.avx-feature-grid div{
  background:#fff;
  padding:18px;
  border-radius:18px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.04);
}

.avx-feature-grid i{
  font-size:22px;
}

/* DESCRIPTION */

.avx-description-box{
  margin-top:35px;
  background:#fff;
  padding:28px;
  border-radius:22px;
  line-height:1.9;
  color:#555;
  box-shadow:0 5px 20px rgba(0,0,0,0.04);
}

/* REVIEWS */

.avx-review-holder{
  margin-top:35px;
}

.avx-single-review{
  background:#fff;
  padding:24px;
  border-radius:20px;
  margin-bottom:20px;
  box-shadow:0 5px 20px rgba(0,0,0,0.04);
}

.avx-single-review strong{
  display:block;
  margin-bottom:10px;
  font-size:18px;
}

/* TABLE SECTION */

.avx-rate-section{
  margin-top:45px;
  background:#fff;
  padding:35px;
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.avx-rate-head{
  text-align:center;
  margin-bottom:25px;
}

.avx-rate-head h2{
  font-size:28px;
  margin-bottom:10px;
}

.avx-rate-head p{
  color:#666;
  line-height:1.8;
}

.avx-table-scroll{
  overflow-x:auto;
}

.avx-pricing-table{
  width:100%;
  border-collapse:collapse;
  min-width:850px;
}

.avx-pricing-table th{
  background:#39000f;
  color:#fcd778;
  padding:16px;
  text-align:center;
  font-weight:500;
}

.avx-pricing-table td{
  padding:16px;
  border:1px solid #ddd;
  text-align:center;
  font-size:14px;
}

.avx-pricing-table tr:nth-child(even){
  background:#f5f5f5;
}

.avx-extra-note{
  margin-top:20px;
  background:#f5f5f5;
  padding:18px;
  border-radius:14px;
  line-height:1.8;
  color:#555;
  font-size:14px;
}

/* CANCELLATION POLICY */

.avx-policy-card{
  margin-top:40px;
  background:#fff;
  padding:35px;
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.avx-policy-card h2{
  margin-bottom:25px;
  font-size:28px;
}

.avx-policy-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.avx-policy-list div{
  background:#f7f7f7;
  padding:18px;
  border-radius:16px;
  line-height:1.8;
  color:#555;
  display:flex;
  gap:12px;
}

.avx-policy-list i{
  color:#111;
  font-size:20px;
  margin-top:2px;
}

/* MAP */

.avx-map-wrapper{
  margin-top:40px;
}

.avx-map-wrapper iframe{
  width:100%;
  height:350px;
  border:none;
  border-radius:24px;
}

/* BOOKING CARD */

.avx-booking-sidebar{
  position:sticky;
  top:100px;
}

.avx-booking-sidebar h2{
  font-size:28px;
  margin-bottom:20px;
}

.avx-booking-box{
  background:#fff;
  padding:30px;
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.avx-input-wrap{
  margin-bottom:20px;
}

.avx-input-wrap label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  font-weight:500;
  color:#666;
}

.avx-input-wrap input,
.avx-input-wrap select,
.avx-input-wrap textarea{
  width:100%;
  padding:15px;
  border-radius:14px;
  border:1px solid #ddd;
  outline:none;
  font-family:'Poppins',sans-serif;
}

.avx-input-wrap textarea{
  resize:vertical;
  min-height:90px;
}

.avx-price-box{
  background:#f5f5f5;
  padding:22px;
  border-radius:18px;
  margin:25px 0;
}

.avx-price-box span{
  color:#777;
  font-size:14px;
}

.avx-price-box h3{
  font-size:34px;
  margin-top:5px;
}

.avx-price-box p{
  margin-top:8px;
  color:#777;
  font-size:13px;
}

.avx-confirm-btn{
  display:block;
  text-align:center;
  text-decoration:none;
  width:100%;
  padding:16px;
  border:none;
  border-radius:16px;
  background:#39000f;
  color:#fcd778;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
  font-family:'Poppins',sans-serif;
}

.avx-confirm-btn:hover{
  background:#333;
}

.avx-instant-btn{
  display:block;
  text-align:center;
  text-decoration:none;
  width:100%;
  margin-top:12px;
  padding:15px;
  border-radius:16px;
  border:1px solid #39000f;
  background:#fff;
  color:#39000f;
  font-size:16px;
  font-weight:600;
  transition:0.3s;
}

.avx-instant-btn:hover{
  background:#f8f0d5;
}

.avx-contact-box{
  margin-top:25px;
  border-top:1px solid #eee;
  padding-top:20px;
}

.avx-contact-box p{
  margin-bottom:14px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#666;
  font-size:14px;
}

@media (max-width: 1100px){
  .avx-main-holder{
    padding:40px 5%;
  }

  .avx-grid-layout{
    grid-template-columns:1fr;
    gap:35px;
  }

  .avx-booking-sidebar{
    position:static;
  }
}

@media (max-width: 768px){
  .avx-main-holder{
    padding:28px 18px;
  }

  .avx-main-room-image{
    height:360px;
    border-radius:18px;
  }

  .avx-gallery-row{
    gap:10px;
  }

  .avx-gallery-row img{
    height:170px;
    border-radius:16px;
  }

  .avx-room-titlebox h1{
    font-size:28px;
    line-height:1.25;
    flex-direction:column;
    gap:8px;
  }

  .avx-price-tag{
    font-size:20px;
  }

  .avx-feature-grid{
    gap:12px;
  }

  .avx-feature-grid div,
  .avx-policy-list div{
    padding:15px;
    border-radius:14px;
  }

  .avx-description-box,
  .avx-single-review,
  .avx-rate-section,
  .avx-policy-card,
  .avx-booking-box{
    padding:22px;
    border-radius:18px;
  }

  .avx-rate-head h2,
  .avx-policy-card h2,
  .avx-booking-sidebar h2{
    font-size:24px;
  }

  .avx-table-scroll{
    margin:0 -22px;
    padding:0 22px 8px;
    -webkit-overflow-scrolling:touch;
  }

  .avx-map-wrapper iframe{
    height:300px;
    border-radius:18px;
  }
}

@media (max-width: 560px){
  .avx-main-holder{
    padding:22px 14px;
  }

  .avx-main-room-image{
    height:260px;
  }

  .avx-gallery-row{
    grid-template-columns:1fr;
  }

  .avx-gallery-row img{
    height:220px;
  }

  .avx-room-titlebox{
    margin-top:22px;
  }

  .avx-room-titlebox h1{
    font-size:24px;
  }

  .avx-price-tag{
    font-size:18px;
  }

  .avx-feature-wrapper{
    margin-top:30px;
  }

  .avx-feature-wrapper h2{
    font-size:22px;
    margin-bottom:16px;
  }

  .avx-feature-grid{
    grid-template-columns:1fr;
  }

  .avx-description-box,
  .avx-single-review,
  .avx-rate-section,
  .avx-policy-card,
  .avx-booking-box{
    padding:18px;
    border-radius:16px;
  }

  .avx-rate-head h2,
  .avx-policy-card h2,
  .avx-booking-sidebar h2{
    font-size:21px;
  }

  .avx-policy-list div{
    line-height:1.6;
  }

  .avx-price-box h3{
    font-size:28px;
  }

  .avx-input-wrap{
    margin-bottom:12px;
  }

  .avx-input-wrap input,
  .avx-input-wrap select,
  .avx-input-wrap textarea{
    padding:11px;
    border-radius:10px;
    font-size:14px;
  }

  .avx-input-wrap textarea{
    min-height:72px;
  }

  .avx-contact-box p{
    align-items:flex-start;
    overflow-wrap:anywhere;
  }
}









/* All Rooms page's css code shown from below here */





















/* Gallery page's Css code shown from below here */


/* HEADER */
.pg-header {
  text-align: center;
  padding: 70px 20px 30px;
  max-width: 1200px;
  margin: auto;
}

.pg-overlay h3 {
  color: #fff;
}

.pg-header h1 {
  font-size: 42px;
  font-weight: 600;
}

.pg-header p {
  color: #aaa;
  margin-top: 10px;
}

/* GRID */
.pg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1400px;
  margin: auto;
}

/* ITEMS */
.pg-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}

/* BIG HERO ITEMS */
.pg-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

/* IMAGE */
.pg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* HOVER EFFECT */
.pg-item:hover .pg-img {
  transform: scale(1.12);
}

/* OVERLAY */
.pg-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  transform: translateY(100%);
  transition: 0.4s ease;
}

.pg-item:hover .pg-overlay {
  transform: translateY(0);
}

.pg-overlay h3 {
  font-size: 16px;
  letter-spacing: 1px;
}

/* LIGHTBOX */
.pg-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.pg-lightbox.active {
  display: flex;
}

.pg-lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  animation: zoom 0.4s ease;
}

@keyframes zoom {
  from {transform: scale(0.8); opacity:0;}
  to {transform: scale(1); opacity:1;}
}

.pg-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 35px;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .pg-grid { grid-template-columns: repeat(2,1fr); }
}

@media(max-width:600px){
  .pg-grid { grid-template-columns: 1fr; }
}

















/* About Us page's CSS */


.location-map-section{
  padding:60px 20px;
  background:#f8f9fb;
}

.location-map-container{
  max-width:1200px;
  margin:auto;
}

.location-map-header{
  text-align:center;
  margin-bottom:25px;
}

.location-map-header h2{
  font-size:28px;
}

.location-map-header p{
  color:#666;
}

/* LANDSCAPE MAP */
.location-map-box{
  width:100%;
  height:400px;
  border-radius:15px;
  overflow:hidden;
}

.location-map-box iframe{
  width:100%;
  height:100%;
  border:0;
}

.map-direction-link {
  display: inline-block;
  margin-top: 18px;
  background: #39000f;
  color: #fcd778;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}


















/* Css of Restaurant page will goes here */

.restaurant-hero{
  min-height:100vh;
  background:
  linear-gradient(rgba(0,0,0,0.55), rgba(57, 0, 15, 0.486)),
  url('Images/Restaurant.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
}

.restaurant-hero-content{
  max-width:900px;
  color:#fff;
  animation:fadeUp 1s ease;
}


.restaurant-title{
  color:#fcd778;
  font-family:'Playfair Display',serif;
}



.hero-buttons{
  margin-top:35px;
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.hero-buttons a{
  text-decoration:none;
  padding:15px 28px;
  border-radius:12px;
  font-weight:600;
  transition:0.3s;
}

.hero-btn1{
  background:#fcd778;
  color:#39000f;
}

.hero-btn2{
  border:1px solid #fff;
  color:#fff;
}

.hero-buttons a:hover{
  transform:translateY(-5px);
}

/* =========================
 ABOUT SECTION
========================= */

.restaurant-about{
  padding:100px 20px;
  background:#fff;
}

.about-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image{
  position:relative;
}

.about-image img{
  width:100%;
  height:550px;
  object-fit:cover;
  border-radius:20px;
}

.experience-badge{
  position:absolute;
  bottom:20px;
  left:20px;
  background:#39000f;
  color:#fcd778;
  padding:22px;
  border-radius:14px;
}

.experience-badge h3{
  font-size:34px;
}

.about-content h2{
  
  margin-bottom:20px;
}

.about-content p{
  color:#666;
  line-height: normal;
  font-size: medium;
  margin-bottom:18px;
}

.about-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:30px;
}

.about-feature{
  background:#faf5e8;
  padding:18px;
  border-radius:14px;
  display:flex;
  gap:14px;
  align-items:center;
}

.about-feature i{
  width:50px;
  height:50px;
  background:#39000f;
  color:#fcd778;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
}

/* =========================
 MENU SECTION
========================= */

.menu-section{
  padding:100px 20px;
  background:#f8f9fb;
}

.section-title{
  text-align:left;
  margin-bottom:60px;
}



.menu-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.menu-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 35px rgba(0,0,0,0.08);
  transition:0.4s;
}

.menu-card:hover{
  transform:translateY(-10px);
}

.menu-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.menu-content{
  padding:24px;
}

.menu-top{
  display:flex;
  justify-content:space-between;
  margin-bottom:12px;
}

.menu-top h3{
  font-size:22px;
}

.menu-price{
  color:#39000f;
  font-weight:700;
}

.menu-content p{
  color:#666;
  line-height:1.8;
  margin-bottom:20px;
}

.order-btn{
  width:100%;
  border:none;
  padding:14px;
  background:#39000f;
  color:#fcd778;
  border-radius:10px;
  cursor:pointer;
  font-weight:600;
}

/* =========================
 DINING EXPERIENCE
========================= */

.dining-section{
  padding:110px 20px;
  margin-bottom: 30px;
  background:
  linear-gradient(rgba(57,0,15,0.88), rgba(57,0,15,0.88)),
  url('Images/Restaurant.jpg') center/cover no-repeat;
  text-align:center;
  color:#fff;
}

.dining-wrapper{
  max-width:850px;
  margin:auto;
}

.dining-wrapper h2{
  font-size:56px;
  margin-bottom:20px;
}

.dining-wrapper p{
  line-height:2;
  margin-bottom:35px;
  color:#f0f0f0;
}

.reserve-btn{
  display:inline-block;
  text-decoration:none;
  background:#fcd778;
  color:#39000f;
  padding:16px 30px;
  border-radius:12px;
  font-weight:600;
}

/* =========================
 GALLERY
========================= */

.food-gallery{
  padding:100px 20px;
  background:#fff;
}

.gallery-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.gallery-item{
  overflow:hidden;
  border-radius:18px;
  cursor:pointer;
  position:relative;
}

.gallery-item img{
  width:100%;
  height:320px;
  object-fit:cover;
  transition:0.5s;
}

.gallery-item:hover img{
  transform:scale(1.1);
}

.gallery-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(transparent, rgba(0,0,0,0.7));
  display:flex;
  align-items:flex-end;
  padding:20px;
  color:#fff;
  opacity:0;
  transition:0.4s;
}

.gallery-item:hover .gallery-overlay{
  opacity:1;
}

/* =========================
 RESERVATION
========================= */

.reservation-section{
  padding:100px 20px;
  background:#f8f9fb;
}

.reservation-wrapper{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.reservation-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.reservation-form{
  padding:50px;
}

.reservation-form h2{
  font-size:42px;
  color:#39000f;
  margin-bottom:15px;
}

.reservation-form p{
  color:#666;
  margin-bottom:30px;
}

.form-group{
  margin-bottom:18px;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:14px;
  border:1px solid #ddd;
  border-radius:10px;
  outline:none;
}

.form-group textarea{
  resize:none;
  height:120px;
}

.submit-btn{
  width:100%;
  padding:15px;
  border:none;
  background:#39000f;
  color:#fcd778;
  border-radius:10px;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
}

/* =========================
 FOOTER
========================= */

.footer{
  background:#39000f;
  color:#cbd5e1;
  padding:60px 20px 20px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.footer-col .logo{
  color:#fcd778;
  font-size:28px;
}

.footer-col p{
  margin:15px 0;
  line-height:1.7;
}

.footer-col h3{
  color:#fff;
  margin-bottom:15px;
}

.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  color:#cbd5e1;
  text-decoration:none;
}

.footer-col ul li a:hover{
  color:#fcd778;
}

.socials{
  display:flex;
  gap:12px;
  margin-top:20px;
}

.socials a{
  width:45px;
  height:45px;
  background:#fcd778;
  color:#39000f;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.newsletter{
  display:flex;
  gap:10px;
  margin-top:15px;
}

.newsletter input{
  flex:1;
  padding:12px;
  border:none;
  border-radius:8px;
}

.newsletter button{
  background:#fcd778;
  color:#39000f;
  border:none;
  padding:12px 18px;
  border-radius:8px;
  cursor:pointer;
}

.footer-bottom{
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:40px;
  padding-top:20px;
}

/* =========================
 LIGHTBOX
========================= */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.92);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.lightbox img{
  max-width:90%;
  max-height:85%;
  border-radius:14px;
}

.lightbox span{
  position:absolute;
  top:25px;
  right:35px;
  color:#fff;
  font-size:40px;
  cursor:pointer;
}

/* =========================
 ANIMATION
========================= */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(50px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* =========================
 RESPONSIVE
========================= */

@media(max-width:992px){

  .about-wrapper,
  .reservation-wrapper{
    grid-template-columns:1fr;
  }

  .menu-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-container{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:80px;
    right:20px;
    width:240px;
    background:#fff;
    flex-direction:column;
    padding:20px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
  }

  .nav-links.active{
    opacity:1;
    visibility:visible;
  }

  .restaurant-hero-content h1{
    font-size:42px;
  }

  .about-content h2,
  .section-title h2,
  .dining-wrapper h2{
    font-size:34px;
  }

  .menu-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .about-features{
    grid-template-columns:1fr;
  }

  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .newsletter{
    flex-direction:column;
  }

  .socials{
    justify-content:center;
  }

}

/* Shared final mobile fixes */
@media(max-width:768px){
  .navbar{
    min-height:74px;
    padding:7px 18px;
  }

  .logo .mainlogo{
    height:60px;
    width:60px;
  }

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:64px;
    right:14px;
    width:min(250px, calc(100vw - 28px));
    align-items:stretch;
    gap:6px;
    padding:14px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 12px 28px rgba(0,0,0,0.14);
    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    transition:opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index:9999;
  }

  .nav-links.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .nav-links a{
    display:block;
    width:100%;
    padding:10px 12px;
    border-radius:8px;
  }

  .nav-links a.btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:42px;
    margin-top:6px;
    padding:10px 16px;
    background:#39000f;
    color:#fcd778;
    text-align:center;
  }

  .booking-section{
    padding:38px 14px;
  }

  .booking-wrapper{
    gap:20px;
  }
}

@media(max-width:560px){
  .booking-hero{
    padding:118px 14px 44px;
  }

  .booking-hero h1{
    font-size:30px;
  }

  .booking-hero p{
    font-size:14px;
    line-height:1.6;
  }

  .booking-summary,
  .booking-form-card{
    padding:16px;
  }

  .booking-summary h2,
  .booking-form-card h2{
    font-size:22px;
  }

  .booking-price-panel{
    padding:16px;
    margin:18px 0;
  }

  .booking-room-list li{
    gap:8px;
    padding:10px 0;
    font-size:14px;
  }

  .booking-room-list strong{
    white-space:normal;
    text-align:right;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea{
    padding:10px;
    margin-bottom:10px;
    border-radius:8px;
    font-size:14px;
  }

  .contact-form textarea{
    height:82px;
  }

  .contact-form button{
    padding:11px 14px;
    font-size:14px;
  }
}
