/* 使用系统默认字体，移除Google字体依赖 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #121314;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f2efe9;
  color: #121314;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 80px;
}

h1,
h2,
h3,
h4,
.art-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #121314;
  border-bottom: 1px solid #333;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 36px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-area img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: 1px solid #c5a880;
}


.logo-title {
  color: #c5a880;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-subtitle {
  color: rgba(242, 239, 233, 0.6);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

nav ul li a {
  color: #f2efe9;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 6px 0;
  position: relative;
}

nav ul li.active a {
  color: #c5a880;
}

.nav-cta {
  background-color: #c5a880;
  color: #121314 !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  border-radius: 2px;
  letter-spacing: 2px !important;
}

.nav-cta::after {
  display: none !important;
}


.page-banner {
  background-color: #121314;
  padding: 180px 24px 100px 24px;
  text-align: center;
  position: relative;
}

.page-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-size: 4.5rem;
  color: #c5a880;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
  animation: slideDown 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-banner p {
  color: #f2efe9;
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.8;
}

section {
  padding: 120px 24px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: left;
  margin-bottom: 80px;
  border-left: 2px solid #c5a880;
  padding-left: 30px;
}

.section-title h2 {
  font-size: 3rem;
  color: #121314;
  line-height: 1.1;
  font-weight: 300;
}

.section-title p {
  color: #c5a880;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.btn-primary {
  background-color: #121314;
  color: #f2efe9;
  border: 1px solid #121314;
}


.btn-secondary {
  background-color: transparent;
  color: #121314;
  border: 1px solid rgba(18, 19, 20, 0.3);
}


.btn-white-outline {
  background-color: transparent;
  color: #f2efe9;
  border: 1px solid rgba(242, 239, 233, 0.4);
}


.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

footer {
  background-color: #121314;
  color: #f2efe9;
  padding: 120px 24px 40px 24px;
  border-top: 1px solid rgba(197, 168, 128, 0.1);
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "LATROBE";
  position: absolute;
  bottom: -30px;
  right: -30px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16rem;
  font-weight: 700;
  color: rgba(197, 168, 128, 0.015);
  letter-spacing: 20px;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.footer-art-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.footer-brand-monologue {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-brand-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #c5a880;
  line-height: 1.1;
  margin-bottom: 30px;
}

.footer-brand-title span {
  display: block;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #f2efe9;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 12px;
}

.footer-brand-desc {
  font-size: 0.95rem;
  color: rgba(242, 239, 233, 0.5);
  max-width: 480px;
  line-height: 1.9;
}

.footer-art-interactive {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-menu-fluid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px 20px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  padding-bottom: 40px;
  width: 100%;
}

.footer-menu-fluid li {
  list-style: none;
}

.footer-menu-fluid li a {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.3rem;
  color: #f2efe9;
  position: relative;
  padding-right: 15px;
  display: inline-block;
}

.footer-menu-fluid li a::before {
  content: "0" calc(attr(data-index));
  position: absolute;
  top: 2px;
  right: -10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.6rem;
  color: #c5a880;
  letter-spacing: 0.5px;
}

.footer-menu-fluid li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #c5a880;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}



.footer-meta-art {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

.footer-meta-card h4 {
  font-size: 0.7rem;
  color: #c5a880;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.footer-meta-card p {
  font-size: 0.85rem;
  color: rgba(242, 239, 233, 0.6);
  line-height: 1.9;
}

.footer-meta-card ul {
  list-style: none;
}

.footer-meta-card ul li {
  font-size: 0.85rem;
  color: rgba(242, 239, 233, 0.6);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.footer-bottom {
  max-width: 1200px;
  margin: 100px auto 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(197, 168, 128, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(242, 239, 233, 0.3);
  font-size: 0.75rem;
  position: relative;
  z-index: 2;
}

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: rgba(18, 19, 20, 0.9);
  color: #c5a880;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 0.8rem;
  z-index: 999;
}


@media (max-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-art-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  header {
    top: 0;
    width: 100%;
  }

  .header-container {
    padding: 12px 20px;
  }

  nav ul {
    display: none;
  }

  .page-banner h1 {
    font-size: 2.8rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .footer-meta-art {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-banner {
  background-image:
    linear-gradient(rgba(30, 32, 34, 0.85), rgba(30, 32, 34, 0.95)),
    url("images/about-interior.png");
}

.gallery-intro {
  text-align: left;
  margin: 10px 0;
  margin-top: 0px;
  color: #7a7a7a;
  font-size: 0.95rem;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background-color: #f7f5f0;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(30, 32, 34, 0.1), rgba(30, 32, 34, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}


.gallery-category {
  font-size: 0.75rem;
  color: #c5a880;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.gallery-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}

.gallery-desc {
  font-size: 0.8rem;
  color: #eae7e2;
  margin-top: 8px;
  line-height: 1.5;
}


.footer-contact-info {
  margin-bottom: 8px;
  color: #a3855c;
}

.footer-contact-info i {
  margin-right: 8px;
}

.footer-copyright {
  letter-spacing: 1px;
}

.about-banner {
  background-image:
    linear-gradient(rgba(30, 32, 34, 0.85), rgba(30, 32, 34, 0.95)),
    url("images/about-interior.png");
}

.about-hero-img {
  border-radius: 2px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-story-section {
  text-align: left;
  margin-bottom: 25px;
}

.about-story-title {
  font-size: 2.6rem;
}

.about-story-paragraph {
  margin-bottom: 15px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-story-paragraph:last {
  margin-bottom: 25px;
}

.team-intro {
  text-align: left;
  max-width: 700px;
  color: #7a7a7a;
  font-size: 0.95rem;
}

.member-img-1 {
  background-image: url("images/about-barista.png");
}

.member-img-2 {
  background-image: url("images/Gemini_Generated_Image_y4pmy3y4pmy3y4pm.png");
  filter: grayscale(15%) contrast(105%);
}

.about-story-img {
  border-radius: 2px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.contact-banner {
  background-image:
    linear-gradient(rgba(30, 32, 34, 0.85), rgba(30, 32, 34, 0.95)),
    url("images/about-interior.png");
}

.contact-submit-btn {
  width: 100%;
  border-radius: 2px;
}

.contact-address-strong {
  margin-bottom: 8px;
}

.contact-map-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.4rem;
  color: #1e2022;
  margin-bottom: 12px;
}

.booking-banner {
  background-image:
    linear-gradient(rgba(30, 32, 34, 0.85), rgba(30, 32, 34, 0.95)),
    url("images/about-interior.png");
}

.booking-section-title {
  text-align: left;
  margin-bottom: 25px;
}

.booking-note {
  font-size: 0.82rem;
  color: #a3855c;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-form-group {
  margin-bottom: 30px;
}

.booking-submit-btn {
  width: 100%;
  font-size: 0.9rem;
  letter-spacing: 2.5px;
}

.menu-banner {
  background-image:
    linear-gradient(rgba(30, 32, 34, 0.85), rgba(30, 32, 34, 0.95)),
    url("images/about-interior.png");
}

.menu-section-no-padding {
  padding-bottom: 0;
}

.menu-section-top-padding {
  padding-top: 30px;
}

.menu-category-margin {
  margin-bottom: 30px;
}

.index-hero-no-padding {
  padding: 0;
}

.index-hero-btn {
  background-color: #c5a880;
  color: #121314;
  border-color: #c5a880;
}

.index-hero-paragraph {
  color: #555555;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 300;
}

.index-hero-paragraph-last {
  color: #555555;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 40px;
  font-weight: 300;
}

.index-hero-image {
  position: relative;
  padding-bottom: 120%;
  width: 100%;
  background: url("images/about-interior.png") no-repeat center center/cover;
  border: 1px solid rgba(18, 19, 20, 0.15);
}

.index-light-bg {
  background-color: #faf9f6;
  border-top: 1px solid rgba(18, 19, 20, 0.05);
}

.index-nav-btn {
  padding: 10px 20px;
  font-size: 0.65rem;
}

.index-showcase-section {
  padding: 0;
}

.index-section-title {
  border-left-color: #c5a880;
  margin-bottom: 30px;
}

.index-section-subtitle {
  color: #c5a880;
}

.section-title h2.index-section-heading {
  color: #f2efe9;
}

.index-section-desc {
  color: rgba(242, 239, 233, 0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.index-showcase-img {
  background-image: url("images/menu-breakfast.jpg");
}