﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #F4F6F8; /* Soft cool light background inspired by logo */
  color: #2E3A40; /* Deep slate text */
  line-height: 1.6;
  font-weight: 400;
}

/* Headings – Elegant & Brand Reflective */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  color: #5F7D8C; /* Fairfield blue tone */
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================= */
/* VERTICAL HEADER - DESKTOP */
/* ============================= */

.vertical-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 120px;
  height: 100vh;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.92) 0%,
      rgba(230,238,243,0.80) 15%,
      rgba(95,125,140,0.75) 55%,
      rgba(46,74,87,0.95) 100%
    ),
    url('../images/new/lobby1.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  backdrop-filter: blur(3px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;

  z-index: 999;
  transition: transform 0.4s ease, background 0.4s ease;
}

/* Decorative Line */
.vertical-header::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.6),
    rgba(138,121,103,0.6)
  );
}

/* Logo */
.vertical-header .logo img {
  width: 108px;
  transition: 0.3s ease;
  
}

.vertical-header .logo img:hover {
  transform: scale(1.05);
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Social Icons */
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.social-icons a {
  color: #FFFFFF;
  font-size: 19px;
  opacity: 0.85;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #8A7967;
  transform: translateY(-3px);
  opacity: 1;
}

/* ============================= */
/* BODY SHIFT AFTER HERO */
/* ============================= */



/* ============================= */
/* HIDE / SHOW ON SCROLL */
/* ============================= */

.vertical-header.hide {
  transform: translateX(-100%);
}

.vertical-header.show {
  transform: translateX(0);
}

/* ============================= */
/* OVERLAY */
/* ============================= */

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.35) 70%,
    rgba(0,0,0,0.15) 100%
  );

  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Disable Scroll */
body.menu-open {
  overflow: hidden;
}

/* ============================= */
/* SIDE MENU */
/* ============================= */

.side-menu {
  position: fixed;
  top: 0;
  left: -420px;
  width: 400px;
  height: 100vh;

  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f4f6f8 40%,
    #eef2f4 100%
  );

  box-shadow: 15px 0 40px rgba(0,0,0,0.25);
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 999;
  overflow-y: auto;
}

.side-menu.active {
  left: 120px;
}

/* Close Arrow */
.menu-close {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 20px;
  cursor: pointer;
  color: #2E3A40;
  transition: 0.3s ease;
}

.menu-close:hover {
  color: #5F7D8C;
}

/* Menu Content */
.menu-content {
  padding: 100px 60px 60px;
}

/* Links */
.menu-links {
  list-style: none;
  margin-bottom: 50px;
}

.menu-links li {
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(-20px);
  transition: 0.4s ease;
}

.side-menu.active .menu-links li {
  opacity: 1;
  transform: translateX(0);
}

.menu-links a {
  font-size: 26px;
  font-family: 'Cormorant Garamond', serif;
  text-decoration: none;
  color: #2E3A40;
  transition: 0.3s ease;
}

.menu-links a:hover {
  color: #5F7D8C;
}
/* ============================= */
/* MENU ADDRESS SECTION */
/* ============================= */

.menu-address a{
  margin-bottom: 10px;
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 10px;
  text-decoration:none;
}

.menu-address strong {
  color: #2E3A40;
  font-weight: 600;
}

/* ============================= */
/* MENU FOOTER */
/* ============================= */

.menu-footer {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 25px;
}

.menu-footer p {
  margin-bottom: 12px;
}

/* Policy Links */
.policy-links a {
  text-decoration: none;
  color: #5F7D8C;
  transition: 0.3s ease;
}

.policy-links a:hover {
  color: #2E3A40;
  text-decoration: underline;
}

/* Credit Text */
.credit a{
  font-size: 12px;
  color: #000;
  margin-top: 10px;
  text-decoration:none;
}
/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 992px) {

  body {
    margin-left: 0 !important;
  }

  .vertical-header {
	    background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.92) 0%,
      rgba(250,250,250,0.80) 15%,
       rgba(250,250,250,0.80) 55%,
      rgba(46,74,87,0.95) 100%
    ),
    url('../images/new/king-suite.webp');

    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 20px 0;
  }

  .vertical-header::after {
    display: none;
  }

  .social-icons {
    display: none;
  }

  .side-menu {
    left: -100%;
    width: 100%;
  }

  .side-menu.active {
    left: 0;
  }

  .vertical-header.hide {
    transform: translateY(-100%);
  }

  .vertical-header.show {
    transform: translateY(0);
  }

}

/* ================= HERO ================= */

.hero {
  position: relative;
  height: 100vh;
  background: url('../images/new/lobby.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.6)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 8vw, 140px);
  font-weight: 500;
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
  line-height: 1.1;
}


/* STAY word - fixed width so layout never shifts */
.static-word {
  min-width: 220px;
  text-align: right;
  color: #FFFFFF;
  text-shadow: 0 10px 40px rgba(0,0,0,0.5);
}


/* Rotator container */
.word-rotator {
  position: relative;
  height: 1.2em;
  perspective: 1000px;
  min-width: 350px; /* prevents layout jump */
  display: inline-block;
 
}

/* Individual words */
.word {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transform: rotateX(90deg);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.77,0,0.18,1),
              opacity 0.6s ease;
			  color: #8DB3C7; /* Soft Fairfield-inspired blue */
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);

}
.hero-subtitle {
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 5px 20px rgba(0,0,0,0.6);
}
/* Active word */
.word.active {
  opacity: 1;
  transform: rotateX(0deg);
  animation: softGlow 4s ease-in-out infinite alternate;
}

@keyframes softGlow {
  from {
    text-shadow: 0 10px 40px rgba(0,0,0,0.6);
  }
  to {
    text-shadow: 0 15px 60px rgba(141,179,199,0.4);
  }
}
/* ================= HERO BACKGROUND ================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 8s ease;
  transform: scale(1);
}

/* Active image */
.bg-slide.active {
  opacity: 1;
  transform: scale(1.08); /* subtle zoom effect */
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 25, 45, 0.75) 0%,
    rgba(10, 25, 45, 0.55) 40%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 1;
}
/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
margin-top:100px;
}
/* ================= RESPONSIVE ADJUSTMENTS ================= */

/* Tablets / iPads (max-width: 1024px) */
@media (max-width: 1024px) {
.hero {
 
  height: 70vh;
 
}
  .hero-title {
    flex-direction: column;/* Slightly reduce the minimum font size and gap */
    font-size: clamp(50px, 7vw, 90px);
    gap: 10px;
	
  }
  
  .static-word {
    min-width: auto;
    width: 100%;
    text-align: center;
  }
  
  .word-rotator {
    min-width: 280px; /* Scale down constraints */
  }
}

/* Mobile Phones (max-width: 768px) */
@media (max-width: 768px) {
  .hero-title {
    /* Stack the words vertically for the cleanest look on narrow screens */
    flex-direction: column;
    gap: 5px;
    font-size: clamp(35px, 8vw, 55px);
  }

  .static-word {
    /* Remove fixed widths and center the text */
    min-width: auto;
    width: 100%;
    text-align: center;
  }

  .word-rotator {
    /* Remove fixed widths and allow it to take full container width */
    min-width: auto;
    width: 100%;
    height: 1.2em; /* Keeps the container height intact for the absolute positioned words */
  }

  .word {
    /* Ensure the rotating words center align with the static word */
    text-align: center;
  }

  .hero-subtitle {
    /* Shrink the subtitle slightly to fit mobile padding */
    font-size: 12px;
    margin-top: 15px;
    padding: 0 20px;
    line-height: 1.4;
  }
}

/* ================= ULTRA CINEMATIC HERO BOOKING ================= */

.hero-booking {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  position: relative;
  perspective: 1200px;
  animation: bookingFade 1.2s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

/* Glass Panel */
.booking-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;

  padding: 24px 50px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.05)
  );

  backdrop-filter: blur(25px) saturate(140%);
  -webkit-backdrop-filter: blur(25px) saturate(140%);

  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);

  box-shadow:
    0 40px 100px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.4);

  transition: transform 0.4s ease;
}

/* ===== Animated Glowing Edge ===== */
.booking-inner::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    #8DB3C7,
    #5F7D8C,
    #8DB3C7
  );
  background-size: 300% 300%;
  animation: glowingBorder 6s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ===== Moving Light Reflection ===== */
.booking-inner::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  top: 0px;
  left: -50%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.35),
    transparent 70%
  );
  transform: skewX(-20deg);
  animation: lightSweep 6s infinite;
}

/* Booking Items */
.booking-item {
  display: flex;
  flex-direction: column;
  min-width: 170px;
}

.booking-item span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.85);
}

/* Inputs */
.booking-item input,
.booking-item select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 15px;
  padding: 6px 0;
  outline: none;
  transition: 0.3s ease;
}

.booking-item input:focus,
.booking-item select:focus {
  border-color: #8DB3C7;
}

/* Divider */
.booking-divider {
  width: 1px;
  height: 45px;
  background: rgba(255,255,255,0.2);
}

/* Button */
.booking-btn {
  padding: 15px 34px;
  background: linear-gradient(135deg, #5F7D8C, #8DB3C7);
  border: none;
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.4s ease;
}

.booking-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Entrance Animation */
@keyframes bookingFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glow Animation */
@keyframes glowingBorder {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Light Sweep */
@keyframes lightSweep {
  0% { left: -120%; }
  100% { left: 120%; }
}
/* =========================================
   Responsive Adjustments (iPad & Mobile)
   ========================================= */

/* Tablet / iPad (Screens smaller than 1024px) */
@media (max-width: 1024px) {
  .hero-booking {
    margin-top: 50px;
    padding: 0 20px; /* Prevents touching the screen edges */
  }

  .booking-inner {
    flex-wrap: wrap; /* Allows items to wrap to the next line if needed */
    justify-content: center;
    gap: 25px;
    padding: 24px 30px;
  }

  .booking-item {
    min-width: 140px; /* Slightly smaller for tablet */
  }

  /* Hide the vertical dividers on tablet to keep the wrapped layout clean */
  .booking-divider {
    display: none; 
  }
}

/* Mobile Devices (Screens smaller than 768px) */
@media (max-width: 768px) {
  .hero-booking {
    margin-top: 10px;
    padding: 0 15px;
  }

  .booking-inner {
    flex-direction: column; /* Stacks everything vertically */
    align-items: stretch;   /* Makes inputs fill the container width */
    padding: 30px 25px;
    gap: 20px;
    /* Adjust border animation sizing for mobile */
    background-size: 200% 200%;
  }

  .booking-item {
    min-width: 100%;
  }

  .booking-item span {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .booking-item input,
  .booking-item select {
    width: 100%; /* Ensures inputs take full width of the mobile column */
    padding: 8px 0;
  }

  .booking-btn {
    margin-top: 10px;
    width: 100%; /* Full-width button for easy mobile tapping */
    padding: 16px;
    font-size: 14px;
  }
}
.accessibility-info {
    /* Matches the clean white/off-white background of your attraction cards */
    background-color: #ffffff; 
    /* Soft slate border to define the section without being harsh */
    border-top: 1px solid rgba(44, 62, 80, 0.1);
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    /* Matches the dark charcoal text in your "Designed for Comfort" section */
    color: #2c3e50; 
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    padding: 18px 20px;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.acc-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 1300px;
    margin: 0 auto;
}

.acc-container i {
    /* Matches the Muted Blue-Grey used in your room description backgrounds */
    color: #3d5062; 
    font-size: 19px;
}

.accessibility-info a {
    color: #3d5062;
    text-decoration: none;
    font-weight: 700;
    /* Underline matches the lighter slate used for the "View Gallery" buttons */
    border-bottom: 2px solid #8db3c7; 
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.accessibility-info a:hover {
    /* Transitions to the darker room card blue on hover */
    color: #2c3e50;
    border-bottom-color: #2c3e50;
    background-color: rgba(141, 179, 199, 0.1); /* Subtle highlight */
}

/* Tablet & Mobile Logic */
@media (max-width: 1024px) {
    .accessibility-info {
        padding: 22px 15px;
    }

    .acc-container {
        flex-direction: column;
        gap: 8px;
    }

    .acc-container span {
        max-width: 90%;
        display: block;
    }
}

@media (max-width: 480px) {
    .accessibility-info {
        font-size: 14px;
        line-height: 1.6;
    }
}
/* ================= WELCOME SECTION ================= */
/* ================= WELCOME SECTION ================= */

.welcome-section {
  padding: 120px 0;
  background: #F4F6F8;
}

.welcome-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT SIDE */
.welcome-left {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 12px;
}

.welcome-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.welcome-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.65));
  z-index: 1;
}

.welcome-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.welcome-slide.active {
  opacity: 1;
}

.welcome-prev,
.welcome-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.25);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 55px;
  height: 55px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
  z-index: 3;
  border-radius: 6px;
}

.welcome-prev { left: 25px; }
.welcome-next { right: 25px; }

.welcome-prev:hover,
.welcome-next:hover {
  background: rgba(255,255,255,0.45);
}

.welcome-left-overlay {
  position: absolute;
  bottom: 50px;
  left: 50px;
  color: #fff;
  z-index: 2;
}

.welcome-left-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
}

/* RIGHT SIDE */

.welcome-label {
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  color: #5F7D8C;
 
  display: inline-block;
}

.welcome-right h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  margin-bottom: 25px;
  color: #2E3A40;
}

.welcome-content-wrapper {
  position: relative;
  transition: 0.4s ease;
  margin-bottom: 25px;
}

/* Default state */
.welcome-short-content {

  display: block;
}

.welcome-full-content {
  display: none;
}

/* Spread state */
.welcome-content-wrapper.spread .welcome-short-content {
  display: none;
}

.welcome-content-wrapper.spread .welcome-full-content {
  display: block;
}

/* Scrollable full content */
.welcome-scroll {
  max-height: 320px;
  overflow-y: auto;
  padding-right: 10px;

  scrollbar-width: none;
}

.welcome-scroll::-webkit-scrollbar {
  display: none;
}

.welcome-readmore {
  padding: 12px 30px;
  background: #5F7D8C;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.welcome-readmore:hover {
  background: #8DB3C7;
}

/* Responsive */
@media (max-width: 992px) {
  .welcome-container {
    grid-template-columns: 1fr;
  }

  .welcome-left {
    height: 450px;
  }
}

/* ============================= */
/* PREMIUM AMENITIES SECTION */
/* ============================= */
/* ============================= */
/* CINEMATIC AMENITIES SECTION */
/* ============================= */

.amenities-section {
  padding: 50px 0;
  position: relative;

  background:
    linear-gradient(
      to top,
      rgba(255,255,255,0.2) 0%,
      rgba(95,125,140,0.8) 15%,
      rgba(95,125,140,0.75) 55%,
      rgba(46,74,87,0.95) 100%
    ),
    url('../images/new/lobby1.webp');

  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  color: #ffffff;
}

/* Optional soft blur overlay depth */
.amenities-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(3px);
  z-index: 0;
}

.amenities-container,
.amenities-header {
  position: relative;
  z-index: 2;
}

/* Section Header */
.amenities-header {
  text-align: center;
  margin-bottom: 100px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 20px;
}

.amenities-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
}

/* Grid */
.amenities-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px 60px;
  text-align: center;
}

/* Item */
.amenity-item {
  transition: 0.4s ease;
}

/* Icon Circle */
.amenity-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  border-radius: 50%;

  /* Glass dark layer */
  background: rgba(46, 74, 87, 0.75);

  border: 1px solid rgba(255,255,255,0.25);

  display: flex;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(6px);
  transition: 0.4s ease;
}

.amenity-icon i {
  font-size: 50px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Title */
.amenity-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
}

/* Hover Effect */
.amenity-item:hover {
  transform: translateY(-10px);
}

.amenity-item:hover .amenity-icon {
  background: rgba(255,255,255,0.15);
  border-color: #8DB3C7;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.amenity-item:hover .amenity-icon i {
  color: #8DB3C7;
}

/* =========================================
   Responsive Adjustments (iPad & Mobile)
   ========================================= */

/* Tablet / iPad (Screens smaller than 1024px) */
@media (max-width: 1024px) {
  .amenities-container {
    /* Change from 3 columns to 2 columns */
    grid-template-columns: repeat(3, 1fr);
    /* Reduce the gap between items */
    gap: 60px 40px; 
  }

  .amenities-header {
    margin-bottom: 70px;
  }

  .amenities-header h2 {
    font-size: 40px;
  }
}

/* Mobile Devices (Screens smaller than 768px) */
@media (max-width: 768px) {
  .amenities-section {
    padding: 40px 0;
  }

  .amenities-container {
    /* Change to 1 single column for mobile */
    grid-template-columns:repeat(2, 1fr);
    gap: 40px 20px;
  }

  .amenities-header {
    margin-bottom: 50px;
  }

  .amenities-header h2 {
    font-size: 32px;
  }

  /* Shrink the icons slightly so they don't overpower small screens */
  .amenity-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .amenity-icon i {
    font-size: 40px;
  }

  .amenity-item h3 {
    font-size: 22px;
  }
}

/* ============================= */
/* ROOMS SECTION */
/* ============================= */
.rooms-section {
  padding: 50px 0;
  position: relative;

  background:
    linear-gradient(
      to top,
      rgba(255,255,255,0.2) 0%,
      rgba(95,125,140,0.8) 15%,
      rgba(95,125,140,0.75) 55%,
      rgba(46,74,87,0.95) 100%
    ),
    url('../images/new/lobby1.webp');

  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  color: #ffffff;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Image Block */
.room-image {
  min-height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

/* Content Block */
.room-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Room color themes */
.room-content.dark {
  background: #2D3C44; /* Deep navy for dark contrast */
}

.room-content.navy {
  background: #3A5064; /* Muted navy for balanced contrast */
}

.room-content.teal {
  background: #5F7D8C; /* Teal for refreshing feel */
}

/* Inner content */
.room-inner {
  max-width: 400px;
}

/* Avatar Circle */
.room-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 30px;
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.room-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title */
.room-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #ffffff;
}

/* Subtitle */
.room-content .room-meta {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.8;
  color: #ffffff;
}

/* Text */
.room-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Tags */
.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.room-tags span {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
}

/* Button */
.room-btn {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.room-btn:hover {
  background: #ffffff;
  color: #2E3A40; /* Deep tone accent */
}

/* Room Details */
.room-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  margin-bottom: 0;
}

.room-details ul {
  margin-top: 15px;
  columns: 2;
  padding-left: 18px;
}

.room-details li {
  margin-bottom: 8px;
  font-size: 14px;
}

.room-details.active {
  max-height: 500px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .room-content {
    padding: 60px 40px;
  }

  .room-image {
    min-height: 350px;
  }
}
.ttd-section {
  padding: 40px 20px;
  background:#F4F6F8; /* Light blue background for a fresh and airy feel */
}

.ttd-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header - Title Left, Description Right */
.ttd-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 40px;
}

.ttd-title {
  flex: 1;
  font-size: 42px;
  font-weight: 700;
  color: #1e3a58; /* Darker blue for the title, more bold and contrasting */
  letter-spacing: 2px; /* Adding some space between letters for better readability */
}

.ttd-description {
  flex: 1;
  font-size: 18px;
  color: #2E3A40; /* Muted gray-blue for description */
  line-height: 1.7;
  
  font-weight: 400;
}

/* Slider */
.ttd-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.ttd-track-wrapper {
  overflow: hidden;
  flex: 1;
}

.ttd-track {
  display: flex;
  transition: transform 0.5s ease;
}

.ttd-card {
  flex: 0 0 25%;
  margin-right: 20px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

/* Overlay (hidden by default) */
.ttd-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 45, 63, 0.75); /* Dark blue with a bit more transparency for overlay */
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
}

/* Show overlay on hover */
.ttd-card:hover .ttd-overlay {
  opacity: 1;
}

/* Caption stays above image but under overlay */
.ttd-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background to enhance text visibility */
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}

.ttd-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* Add a slight zoom effect on hover */
.ttd-card:hover img {
  transform: scale(1.05);
}

/* Arrows Overlay */
.ttd-arrow {
  background: #2d4a5d; /* Deep navy for arrows to match the theme */
  color: #fff;
  border: none;
  font-size: 28px;
  font-weight: bold;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: none; /* default hidden, JS will handle */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ttd-arrow:hover {
  background: #1f2b35; /* Slightly darker blue for hover effect */
  color: #fff;
}

.ttd-prev {
  left: 10px;
}

.ttd-next {
  right: 160px;
}

/* Responsive */
@media (max-width: 992px) {
  .ttd-card {
    flex: 0 0 40%; /* Show 2 full + 1 half */
  }
}

@media (max-width: 600px) {
  .ttd-header {
    flex-direction: column;
    text-align: center;
  }

  .ttd-card {
    flex: 0 0 80%; /* Show 1 full + 1 half */
  }
}


.media-gallery-section {
  max-width: 1400px;
  margin: auto;
  padding: 30px 20px;
  background-color: #f7f7f7; /* Light background to blend with your design */
  color: #333; /* Dark text color for readability */
}

.media-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.media-left, .media-right {
  flex: 1 1 48%;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #5f7d8c; /* Use your main accent color */
  display: inline-block;
  padding-bottom: 6px;
  color: #2e4a57; /* Dark blue to match your design */
  text-transform: uppercase;
}

.gallery-heading {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2e4a57; /* Matching the design theme */
  text-transform: uppercase;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.gallery-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ccc;
}

.gallery-tabs .tab {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.2rem;
  padding: 10px 0;
  cursor: pointer;
  color: #5f7d8c; /* Lighter color for tabs */
  transition: all 0.3s ease;
}

.gallery-tabs .tab.active {
  color: #2e4a57; /* Darker color for active tab */
  border-bottom: 2px solid #5f7d8c; /* Accent color for active tab */
}

.gallery-slider {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.gallery-slider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-slider img.active {
  opacity: 1;
}

.gallery-controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.gallery-controls button {
  background: transparent;
  border: 1px solid #5f7d8c; /* Accent color for borders */
  color: #5f7d8c;
  padding: 8px 16px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-controls button:hover:not(:disabled) {
  background-color: #5f7d8c; /* Accent color for hover */
  color: #fff;
}

.gallery-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.gallery-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  min-height: 60px;
}

@media (max-width: 768px) {
  .media-container {
    flex-direction: column;
  }
  .gallery-slider {
    height: 220px;
  }
}
.site-footer {
  background: 
  linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,         /* Slightly lighter black at the top */
    rgba(0, 38, 61, 0.85) 30%,      /* Softer dark blue at 30% */
    rgba(95,125,140,0.95) 70%,     /* Muted blue shade at 70% */
    rgba(0, 78, 139, 1) 100%        /* Rich dark blue at the bottom */
  ),
  url('../images/new/lobby.webp'); /* Use an elegant image for the background */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 70px 20px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-col {
  flex: 1 1 300px;
}

.footer-title {
  font-size: 32px;
  color: #fff; /* Blue shade from the logo */
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
  min-width: 200px;
  font-family: 'Cormorant Garamond', serif;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #43a1ff; /* Matching blue accent */
}

.footer-info address,
.footer-info p {
  line-height: 1.6;
  margin: 10px 0;
  font-style: normal;
}

.footer-info a {
  color: #fff; /* Blue shade from the logo */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: #43a1ff; /* Turn white on hover for contrast */
}

.footer-links-columns {
  display: flex;
  gap: 40px;
}

.footer-links-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-columns li {
  margin-bottom: 12px;
}

.footer-links-columns a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links-columns a:hover {
  color: #43a1ff; /* Blue accent on hover */
  transform: translateY(-2px);
}

.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li {
  margin-bottom: 10px;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social i {
  margin-right: 10px;
  color: #fff; /* Blue accent color for icons */
}

.footer-social a:hover {
  color:#43a1ff; /* Blue accent on hover */
}

.footer-bottom {
  max-width: 1300px;
  margin: 40px auto 0;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.9rem;
  color: #fff;
  border-top: 1px solid #444;
}

.footer-bottom-left small {
  display: block;
  font-size: 0.8rem;
  margin-top: 4px;
}

.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 15px;
}

.footer-bottom-right a,
.footer-bottom-right span,
.footer-bottom-right small {
  color: #fff; /* Soft grey for text */
  text-decoration: none;
}

.footer-bottom-right a:hover {
  text-decoration: underline;
  color: #fff; /* Blue accent color on hover */
}

.footer-bottom-right span {
  margin: 0 8px;
}

@media (max-width: 580px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
    text-align: left;
  }

  .footer-col {
    width: 100%;
  }

  .footer-links-columns {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-links-columns ul {
    width: 45%; /* Two columns on smaller screens */
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}


/* Back-to-Top Button */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: #003366; /* Deep Blue for consistency with your layout */
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}

/* Hover Effect */
.back-to-top:hover {
  background-color: #005b99; /* Lighter blue for hover effect */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Show the button when user scrolls */
.show {
  opacity: 1;
  visibility: visible;
}

/* Smooth transition */
html, body {
  scroll-behavior: smooth;
}

/* ================= INNER PAGE HERO ADDITIONS ================= */

/* Specific class for inner page hero to handle potential height differences */
.inner-page-hero {
  /* You might want inner pages slightly shorter than 100vh, 
     but keeping 100vh maintains the "Cinematic" feel. 
     If you want it shorter, uncomment the line below: */
 height: 80vh;
}

/* Static Background Handler */
.hero-bg-static {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Apply a slight permanent zoom for the cinematic feel without animation */
  transform: scale(1.05); 
}

/* Simplified Title Style for Inner Page */
.inner-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 7vw, 100px); /* Slightly smaller than main home title */
  font-weight: 500;
  color: #FFFFFF;
  text-shadow: 0 10px 40px rgba(0,0,0,0.5);
  line-height: 1.1;
  margin-bottom: 10px;
}

/* Ensure content centering remains correct */
.inner-page-hero .hero-content {
  margin-top: 0; /* Removing the 100px top margin from home page to center better vertically */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsive adjustment for the new title */
@media (max-width: 768px) {
  .inner-hero-title {
    font-size: clamp(35px, 8vw, 50px);
    padding: 0 15px;
  }
}

/* --- Fairfield Cullman Ledger Amenities Section --- */
.steward-ledger {
    /* Using the light, clean background seen in your screenshot */
    background-color: #33414e; 
    background-image: linear-gradient(rgb(51 65 78), rgba(248, 249, 250, 0.9)), url(../images/new/lobby.webp);
    background-size: cover;
    padding: 60px 5%;
    font-family: 'Cormorant Garamond', serif; /* Matching your hero font */
}

.ledger-container {
    max-width: 1300px;
    margin: 0 auto;
    /* Clean, thin border instead of heavy double navy */
    border: 1px solid #e1e8ed; 
    padding: 50px 40px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    position: relative;
}

/* Header Styling */
.ledger-header { 
    text-align: center; 
    margin-bottom: 50px; 
}

.ledger-header h2 { 
    font-size: clamp(2rem, 4vw, 2.8rem); 
    color: #33414e; /* Deep Slate from your room cards */
    text-transform: capitalize; /* More elegant than all-caps */
    margin: 0; 
    font-weight: 500;
}

.ledger-subtitle { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 0.85rem; 
    letter-spacing: 3px; 
    color: #8DB3C7; /* Fairfield Blue Accent */
    font-weight: 600; 
    margin: 15px 0; 
    text-transform: uppercase;
}

.ledger-intro-text { 
    max-width: 1200px; 
    margin: 25px auto; 
    font-family: 'Montserrat', sans-serif; 
    font-size: 1rem; 
    color: #666; 
    line-height: 1.8; 
}

.ledger-line { 
    height: 2px; 
    width: 50px; 
    background: #8DB3C7; 
    margin: 30px auto; 
}

/* Popular Facilities Bar */
.popular-facilities-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    padding: 25px;
    background: #f4f7f9; /* Subtle light blue-gray tint */
    border-radius: 4px;
}

.popular-facilities-bar span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #33414e;
    text-transform: uppercase;
}

.popular-facilities-bar i {
    color: #8DB3C7;
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Grid & Panel Layout */
.ledger-grid { 
    display: flex; 
    gap: 30px; 
    align-items: stretch; 
}

.ledger-panel { 
    flex: 1; 
    border: 1px solid #eee; 
    padding: 45px 30px; 
    position: relative; 
    background: #fff;
}

/* Highlighted Center Panel - Matching your Room Card Blue/Slate */
.ledger-panel.highlight {
    background: #33414e; /* Deep Slate Background */
    color: #ffffff;
    border: none;
    transform: translateY(-10px); /* Lift effect instead of scale */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.panel-head { 
    text-align: center; 
    border-bottom: 1px solid #f0f0f0; 
    padding-bottom: 25px; 
    margin-bottom: 30px; 
}

.ledger-panel.highlight .panel-head {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.panel-head i { 
    font-size: 32px; 
    color: #8DB3C7; 
    margin-bottom: 15px; 
    display: block; 
}

.panel-head h3 { 
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; 
    margin: 0; 
    font-weight: 600;
    color: #33414e;
}

.ledger-panel.highlight h3 {
    color: #fff !important;
}

.panel-tag { 
    display: block; 
    font-family: 'Montserrat', sans-serif; 
    font-size: 0.7rem; 
    color: #999; 
    text-transform: uppercase; 
    margin-top: 10px; 
    letter-spacing: 2px;
}

.ledger-panel.highlight .panel-tag {
    color: #8DB3C7;
}

/* Subgroups & Internal Lists */
.ledger-subgroup h4 { 
    font-size: 0.85rem; 
    color: #33414e; 
    text-transform: uppercase; 
    margin: 30px 0 15px; 
    border-left: 2px solid #8DB3C7; 
    padding-left: 12px;
    display: block;
    letter-spacing: 1px;
    font-weight: 700;
}

.ledger-items li {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #555; 
    padding: 10px 0;
    border-bottom: 1px solid #f7f7f7;
    display: flex;
    align-items: center;
}

.ledger-items li::before {
    content: "\f00c"; /* FontAwesome Checkmark */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #8DB3C7;
    font-size: 12px;
    margin-right: 12px;
}

/* Featured Center List (Dark Panel) */
.feature-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    color: #eee;
}

.feature-list i { 
    color: #8DB3C7; 
    width: 35px; 
    font-size: 16px; 
}

.ledger-subgroup-alt h4 { 
    color: #8DB3C7; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    margin-top: 35px; 
    letter-spacing: 2px;
}

.ledger-subgroup-alt p { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 13px; 
    color: #bbb; 
    line-height: 1.6; 
}

/* Safety Footer */
.ledger-footer {
    margin-top: 50px;
    padding: 30px;
    background: #fdfdfd;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #888;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .ledger-grid { flex-direction: column; gap: 30px; }
    .ledger-panel.highlight { transform: none; order: -1; }
}


/* ============================================================
   THINGS TO DO - FAIRFIELD BY MARRIOTT CULLMAN
   Slate: #33414e | Fairfield Blue: #8DB3C7 | Light Gray: #f8f9fa
   ============================================================ */

/* 1. SECTION CONTAINER */
.spotlight-section {
  /* Updated to a clean, light Fairfield aesthetic */
  background-color: #33414e; 
    background-image: linear-gradient(rgb(51 65 78), rgba(248, 249, 250, 0.9)), url(../images/new/lobby.webp);
    background-size: cover;
  padding: 30px 0;
  overflow: clip;
  font-family: 'Cormorant Garamond', serif;
}

/* 2. SECTION HEADER (Title & Intro) */
.ttd-section-header {
  width: 100%;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto 60px auto;
  /* Replaced heavy double border with clean Fairfield Slate */
  border: 1px solid #e1e8ed; 
  background: #ffffff;
  padding: 60px 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.ttd-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  color: #33414e; /* Fairfield Slate */
  text-transform: capitalize;
  margin: 0;
  line-height: 1.1; 
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
}

.ttd-main-title span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: #8DB3C7; /* Fairfield Blue Accent */
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px; 
}

.ttd-main-intro {
  max-width: 1200px;
  margin: 30px auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
}

.header-divider {
  width: 60px;
  height: 2px;
  background: #8DB3C7; /* Blue Divider */
  margin: 30px auto;
}

/* 3. MAIN SCROLLING WRAPPER */
.spotlight-wrapper {
  display: flex;
  position: relative;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  border: 1px solid #e1e8ed; 
  background: #ffffff; 
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

/* 4. SCROLLING NARRATIVE COLUMN (LEFT) */
.spotlight-narrative {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 0 80px;
}

.narrative-block {
  min-height: 85vh; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
  opacity: 0.15;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.narrative-block.active {
  opacity: 1;
}

.narrative-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #8DB3C7; /* Fairfield Blue */
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.narrative-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #33414e; /* Fairfield Slate */
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0;
}

.narrative-divider {
  width: 40px;
  height: 3px;
  background: #8DB3C7; 
  margin: 25px 0;
}

.narrative-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  max-width: 480px;
}

/* 5. STICKY VISUAL COLUMN (RIGHT) */
.spotlight-visuals {
  flex: 1.3;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1;
  border-left: 1px solid #f0f0f0;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.spotlight-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 2s ease-out;
  transform: scale(1.1);
}

.spotlight-img.active {
  opacity: 1;
  transform: scale(1);
}

/* 6. VERTICAL PROGRESS BAR */
.spotlight-progress {
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  height: 300px;
  width: 1px;
  background: rgba(0,0,0,0.1);
  z-index: 10;
}

.progress-fill {
  width: 100%;
  background: #8DB3C7; /* Fairfield Blue Progress */
  transition: height 0.6s ease;
  position: absolute;
  top: 0;
}

.progress-total {
  position: absolute;
  bottom: -45px;
  left: -8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #33414e;
}

/* 7. VIEW DETAILS BUTTON (To match your Room Cards) */
.ttd-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  padding: 12px 25px;
  background: #33414e;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s ease;
  width: fit-content;
}

.ttd-btn:hover {
  background: #8DB3C7;
  transform: translateX(5px);
}

/* 8. RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .spotlight-wrapper { 
    flex-direction: column; 
  }

  .spotlight-visuals { 
    height: 50vh; 
    width: 100%;
    position: relative; 
    border-left: none;
  }

  .spotlight-narrative { 
    width: 100%; 
    padding: 60px 30px; 
  }

  .narrative-block { 
    min-height: auto; 
    padding: 60px 0; 
    opacity: 1; 
  }

  .spotlight-progress { display: none; }
}

/* ============================================================
   NEARBY LEDGER - FAIRFIELD CULLMAN BRAND SYNC
   Slate: #33414e | Fairfield Blue: #8DB3C7 | Light Gray: #f8f9fa
   ============================================================ */

.nearby-ledger-section {
  /* Switched to a clean, light background to match the room cards */
  background-color: #33414e; 
    background-image: linear-gradient(rgb(51 65 78), rgba(248, 249, 250, 0.9)), url(../images/new/lobby.webp);
    background-size: cover;
  padding: 40px 5%;
  overflow: clip;
}

.ledger-container {
  max-width: 1300px;
  margin: 0 auto;
  /* Replaced heavy double border with a thin, elegant slate frame */
  border: 1px solid #e1e8ed; 
  padding: 60px 40px;
  background: #ffffff;
  box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}

.nearby-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.nearby-panel {
  flex: 1;
  min-width: 320px;
  border: 1px solid #f0f0f0; 
  padding: 40px;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- THE HIGHLIGHT PANEL (FAIRFIELD SLATE) --- */
/* Matches the dark accents in your room category cards */
.nearby-panel.highlight {
  background: #33414e; /* Deep Slate Background */
  color: #ffffff;
  border: none;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(51, 65, 78, 0.2);
  z-index: 2;
}

.nearby-panel.highlight .panel-heading {
  color: #ffffff; 
  border-bottom-color: rgba(141, 179, 199, 0.3); /* Soft Blue Underline */
}

.nearby-panel.highlight .nearby-list li {
  color: #e1e8ed;
  border-bottom-color: rgba(255,255,255,0.05);
}

.nearby-panel.highlight .panel-heading i {
  color: #8DB3C7; /* Fairfield Blue Icons */
}

/* --- PANEL HEADINGS --- */
.panel-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #33414e; /* Slate */
  border-bottom: 2px solid #8DB3C7; /* Blue Underline */
  padding-bottom: 15px;
  margin-bottom: 25px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.panel-heading i {
  color: #8DB3C7; /* Blue Icons */
  margin-right: 15px;
  font-size: 1.2rem;
}

/* --- LIST ITEMS --- */
.nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nearby-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f7f7f7;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #555;
  transition: all 0.3s ease;
}

.nearby-list li:hover {
  color: #8DB3C7;
  transform: translateX(5px);
}

.nearby-list li:last-child {
  border-bottom: none;
}

/* --- DISTANCE STYLING (The Badge) --- */
.distance {
  color: #33414e; 
  background: #f0f4f7; /* Very light blue-grey */
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  margin-left: 15px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.nearby-panel.highlight .distance {
  color: #33414e;
  background: #8DB3C7; /* High contrast blue for the dark panel */
}

/* ============================================================
   NEARBY SECTION - MOBILE & IPAD RESPONSIVE ONLY
   ============================================================ */

@media (max-width: 1024px) {
  .nearby-ledger-section {
    /* Reduce large side padding from desktop to fit screens */
    padding: 40px 15px; 
    background-attachment: scroll; /* Better performance on mobile browsers */
  }

  .ledger-container {
    /* Double frame slightly thinner for smaller screens */
    border-width: 4px;
    padding: 30px 15px;
    margin: 0 auto;
  }

  .nearby-grid {
    display: grid;
    /* Forces 2-column layout for iPads/Tablets */
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    margin-bottom: 15px;
  }

  .nearby-panel {
    min-width: 0; /* Allows grid to shrink panels properly */
    padding: 20px 15px;
    /* Remove scale effects to prevent edge-clipping */
    transform: none !important; 
    box-shadow: none !important;
  }

  .panel-heading {
    font-size: 1rem;
    padding-bottom: 8px;
    margin-bottom: 15px;
  }

  .nearby-list li {
    padding: 10px 0;
    font-size: 0.85rem;
    /* Aligns distance to the top if text wraps */
    align-items: flex-start; 
  }

  .distance {
    font-size: 0.75rem;
    margin-left: 8px;
  }
}

/* --- Mobile Specific (Phones) --- */
@media (max-width: 600px) {
  .nearby-grid {
    /* Forces 1-column layout for Phones */
    grid-template-columns: 1fr; 
    gap: 20px;
  }

  .nearby-ledger-section {
    padding: 30px 10px;
  }

  .ledger-container {
    padding: 25px 10px;
  }
  
  .nearby-panel {
    padding: 18px 12px;
  }
}


/* --- Fairfield Modern Location Styles --- */
.fairfield-modern-location {
  position: relative;
  background: #f8f9fa; /* Light Fairfield Background */
  padding: 100px 5%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.location-wrapper {
  display: flex;
  width: 100%;
  max-width: 1250px;
  gap: 0;
  position: relative;
}

/* Map Section */
.map-window-wrapper {
  flex: 1.2;
  position: relative;
  height: 600px;
  z-index: 1;
}

.map-window {
  width: 100%;
  height: 100%;
  border: 1px solid #e1e8ed;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Floating Geo Tag */
.geo-tag {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #33414e; /* Fairfield Slate */
  color: #fff;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  border-left: 4px solid #8DB3C7; /* Fairfield Blue */
  box-shadow: 15px 15px 35px rgba(0,0,0,0.15);
}

.coord-divider {
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* Floating Info Panel */
.info-glass-panel {
  flex: 0 0 620px;
  background: #ffffff; 
  margin-left: -60px;  
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 60px;
  z-index: 2;
  border: 1px solid #e1e8ed;
  box-shadow: 25px 25px 60px rgba(0,0,0,0.07);
}

.brand-accent-line {
  width: 50px;
  height: 2px;
  background: #8DB3C7;  /* Fairfield Blue */
  margin-bottom: 25px;
}

.location-subtitle {
  color: #8DB3C7;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 3px;
  font-size: 0.75rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.location-main-title {
  color: #33414e; /* Slate */
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  margin: 0 0 25px 0;
  font-weight: 600;
}

.location-description {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 35px;
  font-family: 'Montserrat', sans-serif;
}

.address-block {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}

.address-block address {
  font-style: normal;
  color: #33414e;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
}

/* Route Form Styling */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group input {
  background: #f8f9fa;
  border: 1px solid #e1e8ed;
  padding: 15px;
  color: #33414e;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: border 0.3s ease;
}

.input-group input:focus {
  border-color: #8DB3C7;
}

.route-submit-btn {
  background: #33414e; /* Dark Slate Button */
  color: #ffffff;
  border: none;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
}

.route-submit-btn:hover {
  background: #8DB3C7; /* Turns blue on hover */
  transform: translateY(-2px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .location-wrapper { flex-direction: column; }
  .info-glass-panel { 
    margin-left: 0; 
    margin-top: -30px; 
    width: 100%; 
    padding: 40px 25px;
    border-left: none;
    border-top: 5px solid #8DB3C7;
  }
  .map-window-wrapper { height: 400px; }
  .geo-tag { left: 10px; bottom: 50px; }
}

/* --- Fairfield Contact Suite Styling --- */
.contact-ledger-suite {
  padding: 80px 5%;
  /* Clean, light background consistent with Fairfield branding */
  background: #f8f9fa;
  background-image: radial-gradient(#dee2e6 0.5px, transparent 0.5px);
  background-size: 20px 20px;
}

.ledger-outer-frame {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  /* Slate border to match property card style */
  border: 1px solid #e1e8ed;
  background: #ffffff;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.ledger-accent-sidebar {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  /* Sidebar uses Fairfield Slate */
  background-color: #33414e;
}

.ledger-main-content {
  flex: 1;
  padding: 70px 60px;
}

.ledger-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: #33414e; /* Slate */
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.1;
}

.ledger-headline span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #8DB3C7; /* Fairfield Blue Accent */
  margin-top: 15px;
}

.ledger-subtext {
  font-family: 'Montserrat', sans-serif;
  color: #666;
  max-width: 1250px;
  line-height: 1.9;
  margin-bottom: 60px;
  font-size: 1.05rem;
}

.ledger-details-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid #f0f0f0;
  padding-top: 40px;
}

.item-meta {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 15px;
  color: #8DB3C7; /* Blue Labels */
}

.item-data p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.estate-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #33414e;
  font-weight: 600;
}

.ledger-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  color: #33414e; /* Slate Links */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  margin-bottom: 8px;
}

.ledger-link:hover {
  color: #8DB3C7; /* Hover to Fairfield Blue */
  transform: translateX(8px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .ledger-outer-frame { flex-direction: column; }
  .ledger-accent-sidebar { 
    width: 100%; 
    height: 10px; 
    border-bottom: 4px solid #8DB3C7; 
  }
  .ledger-details-row { 
    grid-template-columns: 1fr; 
    gap: 45px; 
  }
  .ledger-main-content { 
    padding: 50px 30px; 
  }
  .ledger-headline { 
    font-size: 2.2rem; 
  }
}


/* --- Fairfield Sitemap Index Styling --- */
.sitemap-index-suite {
  padding: 100px 20px;
  /* Clean light gray background to match the "Things to Do" and "Location" pages */
  background-color: #f8f9fa;
  background-image: radial-gradient(#dee2e6 0.5px, transparent 0.5px);
  background-size: 20px 20px;
}

.index-parchment {
  max-width: 1150px;
  margin: 0 auto;
  background: #ffffff;
  padding: 80px 60px;
  /* Replaced heavy double border with a clean, single-line slate frame */
  border: 1px solid #e1e8ed;
  box-shadow: 0 15px 45px rgba(0,0,0,0.05);
  position: relative;
}

.index-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8DB3C7; /* Fairfield Blue */
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.index-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #33414e; /* Fairfield Slate */
  margin: 0 0 25px;
  font-weight: 600;
}

.index-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #666;
  max-width: 900px;
}

.index-ornament {
  width: 60px;
  height: 2px;
  background: #8DB3C7; /* Blue Accent Bar */
  margin: 35px 0 60px;
}

.index-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  border-top: 1px solid #f0f0f0;
  padding-top: 50px;
}

.col-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 30px;
  text-transform: capitalize;
  color: #33414e; /* Slate */
  border-left: 2px solid #8DB3C7; /* Blue accent indicator */
  padding-left: 18px;
  font-weight: 600;
}

.index-list {
  list-style: none;
  padding: 0;
}

.index-list li {
  margin-bottom: 20px;
}

.index-list a {
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  color: #444;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.index-list a:hover {
  color: #8DB3C7; /* Hover to Fairfield Blue */
  transform: translateX(8px);
}

/* Responsive */
@media (max-width: 992px) {
  .index-columns { 
    grid-template-columns: 1fr; 
    gap: 40px; 
    padding-top: 40px;
  }
  .index-parchment { 
    padding: 50px 30px; 
  }
  .index-title { 
    font-size: 2.4rem; 
  }
  .col-heading {
    margin-bottom: 20px;
  }
}

/* --- FAIRFIELD CULLMAN FAQ LEDGER SUITE --- */
.faq-ledger-suite {
  background: #ffffff; /* Clean white for high legibility */
  padding: 100px 5%;
  border-top: 1px solid #f0f0f0; 
}

.faq-ledger-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

/* Sidebar Styling */
.faq-sidebar {
  flex: 0 0 350px;
}

.sidebar-sticky {
  position: sticky;
  top: 120px;
}

.faq-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #8DB3C7; /* Fairfield Blue */
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: #33414e; /* Fairfield Slate */
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 600;
}

.faq-headline span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #8DB3C7; /* Blue Accent */
  text-transform: uppercase; 
  letter-spacing: 2px;
  font-size: 1.2rem;
  margin-top: 10px;
}

.faq-context {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

/* Entry Styling (The List) */
.faq-entries {
  flex: 1;
}

.faq-entry {
  display: flex;
  gap: 30px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #f0f0f0;
  transition: 0.3s;
}

.entry-no {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #8DB3C7; /* Fairfield Blue Numbering */
  font-weight: 600;
  padding-top: 2px;
  opacity: 0.7;
}

.faq-entry h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #33414e; /* Fairfield Slate */
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.faq-entry p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

.antique-link {
  color: #8DB3C7; /* Fairfield Blue */
  text-decoration: none;
  font-weight: 700;
  margin-top: 10px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.antique-link:hover {
  color: #33414e; /* Transitions to Slate on hover */
  border-bottom: 2px solid #33414e;
  padding-left: 8px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .faq-ledger-wrapper { flex-direction: column; gap: 50px; }
  .faq-sidebar { flex: none; text-align: left; }
  .sidebar-sticky { position: static; }
  .faq-headline { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .faq-entry { flex-direction: column; gap: 15px; }
  .entry-no { font-size: 1.5rem; }
  .faq-headline { font-size: 2.4rem; }
  .faq-ledger-suite { padding: 60px 5%; }
}