@charset "utf-8";

:root {
  --primary-gold: #c5a059;
  --white: #ffffff;
  --dark-bg: #121212;
  --overlay: rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-family: Arial, sans-serif;
}

body {
  color: #a6a6a6;
  font-family: 'Indie Flower'; /* Fixed comment error here */
}

/* NAVBAR - Combined and cleaned */
.navbar {
  position: fixed; /* Changed to fixed so it stays at the top */
  top: 0;
  width: 100%;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 5%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: 0.3s;
}

.menu-toggle {
  display: none; /* Hidden on desktop */
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  backgroung: #ff0000; /* Temp test*/
  background: url('../img/Banner2329.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

/* Responsive Typography */
.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-family: 'Playfair Display', serif;
  margin: 10px 0;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 40px;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.4s;
}

.cta-button:hover {
  background: var(--white);
  color: #000;
}

/* GRID / COLUMNS */
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  flex: 25%; /* 4 columns on desktop */
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  width: 100%;
  margin-top: 8px;
  vertical-align: middle;
}

/* RESPONSIVE DESIGN */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .column {
    flex: 50%; /* 2 columns on tablets */
    max-width: 50%;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Show hamburger menu icon */
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    width: 100%;
    display: none; /* Toggle this with JS '.active' class */
    padding: 20px 0;
  }

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

  .column {
    flex: 100%; /* 1 column on mobile */
    max-width: 100%;
  }

  .hero-section {
    background-position: center top;
  }
}

.gallery-container ul {
	
.masonry-gallery {
		columns: 12rem;
		column-gap: 1rem;
		padding: 20px;

		li {
			break-inside: avoid;
			margin: 0 0 1rem;
		}
	}
}	