/* Import Montserrat from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;800;900&display=swap');

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdfbf9;
  color: #2a2a2a;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-top: 0;
}

/* Links */
a {
  color: #900;
  text-decoration: none;
}

a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* === Header === */
.site-header {
  background-color: #fff;
  padding: 1rem 0;
  border-bottom: 2px solid #900;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  width: 240px;
  height: 135px;
  object-fit: contain;
  display: block;
}

.logo-link {
  display: inline-block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #222;
  text-decoration: none;
}

.site-nav a:hover {
  color: #900;
}

/* === Footer === */
.site-footer {
  background-color: #3e2e1e;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* === Home Intro === */
.intro {
  text-align: center;
  padding: 4rem 1rem;
}

.intro h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1.25rem
.intro p {
  font-size: 1.25rem;
}

/* === Floating Social === */
.floating-social {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-social img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-social.bottom {
  left: 20px;
  transform: none;
}

.floating-social.bottom img {
  width: 40px;
  height: 40px;
}

.share-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.share-modal .modal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

.like-btn {
  padding: 4px 10px;
  font-size: 0.85rem;
  border-radius: 6px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  cursor: pointer;
}

.your-container-class {
  overflow: visible;
}

.banner-image {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 1) !important;
  border-radius: 6px !important;
}

