/* 
  Gusto Restaurants Hub Redesign
  Luxury Destination Guide Aesthetic
*/

:root {
  --ds-ivory: #F4F0E5;
  --ds-navy: #08263D;
  --ds-sage: #D8E2DA;
  --ds-peach: #D88A5A;
  --ds-gold: #A8894A;
  --ds-font-serif: var(--ds-font-abruzzo, 'Abruzzo', serif);
  --ds-font-sans: var(--ds-font-neutra);
  --ds-transition-smooth: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hub-page {
  background-color: var(--ds-ivory);
  color: var(--ds-navy);
  font-family: var(--ds-font-sans);
  overflow-x: hidden;
}

.hub-page h1, .hub-page h2, .hub-page h3, .hub-page h4 {
  font-family: var(--ds-font-abruzzo);
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
}

/* Typography Utilities */
.hub-overline {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
  opacity: 0.7;
}

.hub-title-italic {
  font-style: italic;
}

/* Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--ds-transition-smooth), transform var(--ds-transition-smooth);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section Containers */
.hub-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hub-section {
  padding: 120px 0;
}

/* Buttons */
.ds-btn.ds-btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background-color: var(--ds-navy);
  color: var(--ds-ivory);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.ds-btn.ds-btn-primary:hover {
  background-color: var(--ds-peach);
}
.ds-btn.ds-btn-light {
  background-color: var(--ds-ivory);
  color: var(--ds-navy);
}
.ds-btn.ds-btn-light:hover {
  background-color: rgba(244, 240, 229, 0.8);
}
.ds-btn.ds-btn-outline {
  background-color: transparent;
  border: 1px solid var(--ds-navy);
  color: var(--ds-navy);
}
.ds-btn.ds-btn-outline:hover {
  background-color: var(--ds-navy);
  color: var(--ds-ivory);
}

/* --- 1. HERO --- */
.hub-hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--ds-ivory);
}

.hub-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(8,38,61,0.8) 0%, rgba(8,38,61,0.4) 50%, rgba(8,38,61,0.1) 100%);
}

.hub-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hub-hero h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hub-hero h1 {
    line-height: 0.8;
  }
}

.hub-hero p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
  opacity: 0.9;
  padding-left: 24px;
  border-left: 1px solid rgba(244, 240, 229, 0.3);
}

/* --- 2. SIGNATURE LOCATIONS --- */
.hub-signature {
  background-color: var(--ds-ivory);
}

.hub-sig-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 160px;
}
.hub-sig-item:last-child {
  margin-bottom: 0;
}

/* Alternating Layout */
.hub-sig-item.reverse {
  direction: rtl;
}
.hub-sig-item.reverse > * {
  direction: ltr;
}

.hub-sig-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hub-sig-content {
  padding: 40px 0;
}

.hub-sig-content h2 {
  font-size: 4rem;
  margin-bottom: 24px;
}

.hub-sig-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(8,38,61,0.8);
  margin-bottom: 40px;
  max-width: 450px;
}

/* --- 3. THE COLLECTION --- */
.hub-collection {
  background-color: var(--ds-sage);
  padding: 140px 0;
}

.hub-collection-header {
  text-align: center;
  margin-bottom: 80px;
}

.hub-collection-header h2 {
  font-size: 3.5rem;
}

.hub-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

.hub-col-card {
  text-decoration: none;
  color: var(--ds-navy);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.hub-col-card:hover {
  transform: translateY(-8px);
}

.hub-col-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 8px;
  position: relative;
}

.hub-col-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hub-col-card:hover .hub-col-img {
  transform: scale(1.05);
}

.hub-col-card h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.hub-col-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.7;
  margin: 0 0 16px 0;
}

.hub-col-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ds-peach);
  font-weight: 600;
  transition: color 0.3s;
}

.hub-col-card:hover .hub-col-link {
  color: var(--ds-navy);
}

/* --- 4. WHY VISIT GUSTO --- */
.hub-why {
  background-color: var(--ds-ivory);
  text-align: center;
}

.hub-why-header {
  max-width: 700px;
  margin: 0 auto 80px;
}

.hub-why-header h2 {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.hub-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.hub-why-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 32px;
}

.hub-why-item h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.hub-why-item p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* --- 5. EXPERIENCES (Mini) --- */
.hub-experiences {
  background-color: var(--ds-navy);
  color: var(--ds-ivory);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.hub-experiences::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background-color: rgba(244, 240, 229, 0.03);
  border-radius: 50%;
  z-index: 1;
}

.hub-exp-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.hub-exp-inner h2 {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.hub-exp-inner p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(244, 240, 229, 0.8);
  margin-bottom: 40px;
}

/* --- 6. LOCATION FINDER --- */
.hub-finder {
  padding: 80px 0;
  border-bottom: 1px solid rgba(8,38,61,0.1);
  background-color: var(--ds-ivory);
}

.hub-finder-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hub-finder-inner h3 {
  font-size: 2.5rem;
  margin-bottom: 32px;
}

.hub-finder-form {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hub-finder-select {
  padding: 16px 24px;
  width: 300px;
  border: 1px solid rgba(8,38,61,0.2);
  background: transparent;
  font-family: var(--ds-font-sans);
  font-size: 1rem;
  color: var(--ds-navy);
  outline: none;
  appearance: none;
  border-radius: 0;
}

/* --- 7. PRIVATE DINING CTA --- */
.hub-private {
  padding: 0 0 120px;
}

.hub-private-hero {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ds-ivory);
}

.hub-private-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,38,61,0.5);
}

.hub-private-content {
  position: relative;
  z-index: 2;
  background: rgba(8,38,61,0.85);
  padding: 60px 80px;
  backdrop-filter: blur(5px);
  max-width: 600px;
}

.hub-private-content h2 {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.hub-private-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* --- 8. NEWSLETTER --- */
.hub-newsletter {
  padding: 120px 0;
  text-align: center;
  background-color: var(--ds-ivory);
}

.hub-news-inner {
  max-width: 600px;
  margin: 0 auto;
}

.hub-news-inner h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.hub-news-inner p {
  opacity: 0.8;
  margin-bottom: 40px;
}

.hub-news-form {
  display: flex;
  border-bottom: 1px solid var(--ds-navy);
}

.hub-news-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 0;
  font-family: var(--ds-font-sans);
  font-size: 1rem;
  outline: none;
  color: var(--ds-navy);
}

.hub-news-form button {
  background: transparent;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  cursor: pointer;
  color: var(--ds-navy);
  padding: 0 16px;
  transition: color 0.3s;
}

.hub-news-form button:hover {
  color: var(--ds-peach);
}

/* Responsive */
@media (max-width: 980px) {
  .hub-sig-item {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .hub-sig-item.reverse {
    direction: ltr;
  }
  .hub-sig-content {
    padding: 0;
  }
  .hub-collection-grid, .hub-why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hub-hero h1 {
    font-size: 3.5rem;
  }
  .hub-collection-grid, .hub-why-grid {
    grid-template-columns: 1fr;
  }
  .hub-finder-form {
    flex-direction: column;
    align-items: center;
  }
  .hub-private-content {
    padding: 40px 24px;
    margin: 0 24px;
  }
}








.hub-title { font-family: var(--ds-font-gallins); }


