/* style.css */
:root {
  --bg-color: #0a0a0a;
  --text-color: #e8d398;
  --accent-color: #bfa76c;
  --text-font: 'Suisse Intl', sans-serif;
  --display-font: 'Domaine Display', serif;
}

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

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: var(--text-font) !important;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display-font);
  font-weight: 400;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 20px;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.logo {
  display: flex;
  justify-content: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.nav-links li {
  font-size: 0.9rem;
}

.nav-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.nav-links i {
  font-size: 1.2rem;
}

.nav-links span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #000;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: 0;
}

.hero-content {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 3.5vw;
  font-weight: 400;
  margin-bottom: 60px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: #bfa76c;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--text-color);
  animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
  0% { transform: translateY(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* Sections */
.section {
  padding: 120px 40px;
  position: relative;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 60px;
  text-align: center;
}

.section-title span {
  position: relative;
  display: inline-block;
}

.section-title span:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text-color);
  opacity: 0.3;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 0 auto;
  max-width: 1400px;
  grid-auto-rows: 1fr;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Filters */
.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  background: transparent;
  color: var(--text-color);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--text-font);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.filter-btn.active {
  background: var(--text-color);
  color: var(--bg-color);
  border-color: var(--text-color);
}

.filter-btn:hover {
  border-color: var(--text-color);
}

/* Load More Button */
#load-more {
  display: block;
  margin: 60px auto 0;
  padding: 15px 30px;
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--text-font);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#load-more:hover {
  background: var(--text-color);
  color: var(--bg-color);
}

/* Texture Grid */
.texture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 0 auto;
  max-width: 1400px;
}

.texture-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.texture-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.texture-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.texture-item:hover .texture-overlay {
  transform: translateY(0);
}

.texture-overlay h3 {
  margin: 0;
  font-size: 1rem;
  font-family: var(--text-font);
  font-weight: 300;
  letter-spacing: 1px;
}

/* About Section */
.full-width-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 120px 0;
  background: var(--bg-color);
  position: relative;
}

.full-width-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
  width: 100vw;
  height: 100%;
  background: var(--bg-color);
  z-index: -1;
}

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

.about-content {
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
}

.team-photo {
  float: right;
  margin: 0 0 30px 40px;
  width: 400px;
  max-width: 45%;
}

.team-photo img {
  width: 100%;
  height: auto;
}

/* Contact Form */
.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-color);
  font-family: var(--text-font);
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--text-color);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  padding: 15px;
  background: var(--text-color);
  color: var(--bg-color);
  border: none;
  cursor: pointer;
  font-family: var(--text-font);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: var(--accent-color);
  color: var(--text-color);
}

.form-feedback {
  padding: 15px;
  margin-bottom: 30px;
  border: 1px solid;
  border-radius: 5px;
  font-size: 0.95rem;
  text-align: center;
}

.form-feedback.success {
  border-color: #5cb85c;
  background-color: #dff0d8;
  color: #3c763d;
}

.form-feedback.error {
  border-color: #d9534f;
  background-color: #f2dede;
  color: #a94442;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.show {
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox .caption {
  color: white;
  text-align: center;
  max-width: 80%;
}

.lightbox .caption h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 400;
}

.lightbox .caption p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.lightbox .close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lightbox .close-btn:hover {
  opacity: 1;
}

.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  cursor: pointer;
  padding: 0 20px;
  user-select: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lightbox .nav:hover {
  opacity: 1;
}

.lightbox .prev {
  left: 10px;
}

.lightbox .next {
  right: 10px;
}

/* Texture boards */
.canvas-image {
  border: 4px solid #ccc;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  max-width: 90vw;
  height: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h2 {
    font-size: 5vw;
  }
  
  .section {
    padding: 100px 30px;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px;
  }
  
  .hero h2 {
    font-size: 8vw;
    margin-bottom: 40px;
  }
  
  .section {
    padding: 80px 20px;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .gallery-grid,
  .texture-grid {
    grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
  }
  
  .about-content {
    font-size: 1rem;
  }
  
  .team-photo {
    float: none;
    margin: 0 auto 30px;
    width: 100%;
    max-width: 500px;
  }

  /* Mobile navigation */
  .nav-content {
    
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    flex: 0 0 70%;
    display: flex;
    align-items: center;
  }

  .logo-img {
    height: 60px;
    max-width: 100%;
  }

  .nav-links {
    flex: 0 0 30%;
    justify-content: flex-end;
    gap: 10px;
  }

  .nav-links li a i {
    font-size: 1.4rem;
  }

  .nav-links li a span {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 8vw;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .filters {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
  
  .lightbox .caption {
    bottom: 20px;
    padding: 10px;
  }
  
  .lightbox .close-btn {
    top: 20px;
    right: 20px;
  }
  
  .lightbox .nav {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
    gap: 15px;
  }
}

/* Desktop styles for navigation */
@media (min-width: 769px) {
  .nav-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    gap: 30px;
  }
  
  .nav-links a {
    flex-direction: row;
    gap: 8px;
  }
  
  .nav-links i {
    font-size: 1rem;
  }
  
  .logo-img {
    height: 60px;
  }
}

/* Add this to your existing style.css */
.texture-item img {
  border: 4px solid rgba(255, 255, 255, 0.15); /* Subtle white border */
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.3), /* Base shadow */
    0 6px 12px rgba(0, 0, 0, 0.2), /* Secondary shadow */
    inset 0 1px 0 rgba(255, 255, 255, 0.1); /* Inner highlight */
  transition: all 0.4s ease;
  position: relative;
  background: var(--bg-color); /* Match your background */
  padding: 4px; /* Creates space between image and border */
}

/* 3D effect on hover */
.texture-item:hover img {
  transform: 
    scale(1.03) 
    translateY(-3px); /* Lift effect */
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.4), 
    0 12px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25); /* Brighter border on hover */
}

/* Optional: Add a subtle frame effect */
.texture-item {
  position: relative;
}

.texture-item::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid rgba(191, 167, 108, 0.3); /* Using your accent color */
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.texture-item:hover::before {
  opacity: 1;
}

/* For the lightbox version */
.canvas-image {
  border: 6px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.6),
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  background: #111;
  padding: 6px;
  transition: all 0.3s ease;
}

.canvas-image:hover {
  transform: scale(1.01);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 10px 35px rgba(0, 0, 0, 0.7),
    0 15px 45px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

/* Contact Info */
.contact-info {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-info a {
  color: var(--accent-color);
  transition: opacity 0.3s ease;
}

.contact-info a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-info {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}


/* NEW */
/* ===== HERO SECTION ===== */
.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content h2 {
    font-size: 1.2rem;
  }
}

/* ===== ABOUT SECTION ===== */
.about-content h3 {
  font-size: 1.8rem;
  margin: 1.5rem 0 1rem;
}

.about-content ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.about-content li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.about-content strong {
  font-weight: 500;
}

.about-content a {
  text-decoration: underline;
  transition: opacity 0.3s;
}

.about-content a:hover {
  opacity: 0.8;
}

/* ===== TEXTURES SECTION ===== */
.texture-grid {
  margin-top: 2rem;
}

.texture-overlay h3 {
  font-size: 1.1rem;
  font-weight: 500;
  background: rgba(0,0,0,0.7);
  padding: 0.5rem 1rem;
  border-radius: 3px;
}

/* ===== CONTACT SECTION ===== */
.contact-container h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-container ul {
  margin: 1.5rem 0;
  list-style: none;
  padding-left: 0;
}

.contact-container li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-container strong {
  font-weight: 500;
}

.contact-container a {
  transition: opacity 0.3s;
}

.contact-container a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ===== GENERAL IMPROVEMENTS ===== */
/* Typography */
body {
  line-height: 1.6;
}

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

/* Spacing */
.section {
  padding: 4rem 2rem;
}

.full-width-section {
  padding: 4rem 0;
}

/* Buttons */
.btn, .filter-btn, button[type="submit"] {
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background: #6b5a45;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-content, .contact-container {
    flex-direction: column;
  }
  
  .team-photo {
    margin-bottom: 2rem;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
}

/* SEO Keywords*/

.homepage-intro {
  background-color: #131008;
  padding: 4rem 1.5rem;
  font-family: 'Suisse Intl', sans-serif;
  color: #c9b378;
  line-height: 1.6;
}

.homepage-intro .section-content {
  max-width: 960px;
  margin: 0 auto;
}

.homepage-intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.homepage-intro h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.homepage-intro ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.homepage-intro li {
  margin-bottom: 0.5rem;
}

.homepage-intro .cta-button {
  display: inline-block;
  margin-top: 2rem;
  background-color: #1c1c1c;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.homepage-intro .cta-button:hover {
  background-color: #444;
}

.local-links {
  margin-top: 3rem;
  text-align: center;
}

.local-links h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #c9b378;
  margin-bottom: 1rem;
  font-family: 'Domaine Display', serif;
}

.local-cta-links a.cta-button {
  margin: 0.5rem;
}


