@font-face {
  font-family: 'MyFont';
  src: url('fonts/Stardom-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'MyFont', sans-serif;
  margin: 0;
  background-color: #fafafa;
  color: #333;
}


:root {
  --accent: #123524;
  --accent-hover: #123524;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.logo-img {
  height: 50px; /* adjust for your desired size */
  width: auto;
  display: block;
}

.logo {
  margin-left: -20px; /* moves it left */
}

.logo a {
  display: flex;
  align-items: center;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  margin-right: 5px; /* spacing between image and text */
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-line1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.logo-line2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #777;
  letter-spacing: 0.5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #555;
}

.nav-links a.active {
  color: var(--accent);
}

/* Hero */
.hero {
  height: 90vh;
  width: 100%;
  background: url('images/Copy\ of\ SpotPrawnBrandy.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 0;
}

.hero-content {
  position: relative; /* so it appears above the overlay */
  z-index: 1;
}

.hero-content h1 {
  font-family: 'MyFont', sans-serif; 
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: none;
  transform: scaleY(1.2); /* optional vertical stretch */
  margin-bottom: 0.75rem; /* change this value to control spacing */
}

.hero-subtext {
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.6;
  color: #f1f1f1; /* soft white */
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4); /* optional subtle depth */
}

/* Remove any white gap under hero section */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

.hero {
  height: 100vh; /* full viewport height */
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Fade-in animation */
@keyframes fadeInText {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive font size */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }
}


.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
}


.hero h1 {
  font-size: 2.5rem;
}

.btn {
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  display: inline-block;
  margin-top: 1rem;
}

.btn:hover {
  background: var(--accent);
}

/* Gallery */
.gallery {
  padding: 3rem 2rem;
  text-align: center;
}

.gallery-grid {
  column-count: 3;
  column-gap: 0;
  line-height: 0; /* removes small line-space rendering gaps */
}

.gallery-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  break-inside: avoid;
}


.gallery-item:hover {
  transform: scale(1.03);
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
  }
}


/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0; */
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  margin: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox-content.show {
  opacity: 1;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover, .close:hover {
  color: #ccc;
}


.prev:hover, .next:hover {
  color: var(--accent);
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

/* Contact */
.contact {
  padding: 3rem 2rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 2rem auto;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

/* Footer Social Icon */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
  margin-top: 0;
}

.social-link {
  display: inline-block;
  margin-top: 0.5rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon {
  width: 28px;
  height: 28px;
  vertical-align: middle;
}

.social-link:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .nav-links {
    gap: 1rem;
  }
}
/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Mobile Menu Button (Hamburger) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #333;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    display: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
  }
}
.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.nav-links a.active {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  transition: all 0.2s ease;
}

@media (max-width: 900px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
  }
}

/* Apply Stardom font only to the landing (home) page */
.home-page {
  font-family: 'MyFont', sans-serif;
}
