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

body {
  font-family: 'Cormorant Garamond', serif;
  background-color: #1d1f1d;
  color: #dfe9d8;
  line-height: 1.6;
}


/* === BACKGROUND COLORS === */
.background-1 {
  padding: 30px 0px;
  background-color: #0f110f;
}

.background-2 {
  padding: 30px 0px;
  background-color: #1d1e1d;
}

/* === GLOBAL SUBHEADING STYLES === */
.subheading {
  overflow: hidden;
  text-align: center;
  font-size: 2.0rem;
  color:#b49d34;
}

.subheading::before,
.subheading::after {
  background-color: #b49d34;
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}

.subheading::before {
  right: 0.5em;
  margin-left: -50%;
}

.subheading::after {
  left: 0.5em;
  margin-right: -50%;
}

.subheading-wrap {
  max-width: 1200px;
  padding: 10px 0px;
  margin: auto;
}



/* ==== NAVBAR ==== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0f110f;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 2.4rem;
  font-weight: bold;
  color: #ffffff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
}

.nav-links a {
  text-decoration: none;
  color: #c7c7c7;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}



/* ==== HERO SECTION ==== */
/* Flex container to center circle */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url('../images/pub-hero-blurred.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 30vh;
}

/* The circle container */
.circle {
  width: 50vh;
  height: 50vh;
  border-radius: 50%;
  background-color: #e9eee6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* Text styles */
.line-1 {
  font-size: 3.8rem;
  color: #9e6320;
  line-height: 40px;
  margin: 60px 0 30px;
}

.line-2 {
  font-size: 6.2rem;
  line-height: 120px;
  font-weight: bold;
  color: #9e6320;
}

.line-3 {
  font-size: 1.8rem;
  color: #444;
}

.pub-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.text-divider {
  width: 100px;
  position: relative;
  height: 40px;
  margin: 0px 30px;
}

.text-divider img{
  width: 100%;
  height: 40px;
}



/* ==== ABOUT SECTION ==== */
.about {
  display: flex;
  align-items: center;
  margin: auto;
  min-height: 20vh;
  max-width: 1200px;
}

.about-text {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #f7faf6;
}

/* ==== MENU SECTION ==== */
.menu {
  margin: auto;
  max-width: 1200px;
}

.menu-text {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #f7faf6;
  padding: 20px 0px;
}

.menu-columns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.menu-page{
  width: 560px;
  height: 800px;
  overflow: hidden;
  position: relative;
}

.menu-page img{
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}



/* ==== GALLERY SECTION ==== */
.gallery {
  width: 1200px;
  display: flex;
  align-items: center;
  min-height: 30vh;
  overflow-x: scroll;
  padding: 20px 0px;
}

.carousel {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 20px;
  padding: 10px;
  flex: none;
}

.carousel img {
  width: 100%;
  filter: grayscale(100%);
  transition: transform 0.5s;
}

.carousel img:hover {
  filter: grayscale(0);
  cursor: pointer;
  transform: scale(1.1);
}

.gallery::-webkit-scrollbar {
  display: none;
}

.gallery-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.button-back, .button-next {
  background-color: #dddddd;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  margin: 30px;
}

.button-icon {
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
}



/* ==== CONTACT SECTION ==== */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 10vh;
  text-align: center;
}

.contact-detail {
  font-size: 1.4rem;
  color: #f7faf6;
  margin: 1% auto;
}

.map-embed {
  max-width: 1200px;
  width: 100%;
  min-height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
}

iframe {
  width: 100%;
  height: 500px;
}



/* ==== FOOTER ==== */

.footer-text {
  background-color: #0f110f;
  color: #f7faf6;
  text-align: center;
  padding: 20px 40px;
  margin: 1% auto auto;
}

.socials-subtitle {
  font-size: 1.6rem;
}

.socials {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  
}

.social-icon {
  color: #c7c7c7;
  transition: color 0.2s;
  font-size: 4.8rem;
  margin: 1% 20px;
}

.social-icon:hover {
  color: #ffffff;
  cursor: pointer;
}

.copyright {
  font-size: 1.0rem;
}
