* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}


html, body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  scrollbar-gutter: auto !important;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  background: #111;
  color: white;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

/* Logo */
/* This is the container (the <a> tag) */
.logo {
  display: flex;           /* Enables flexbox */
  flex-direction: column;  /* This is the magic: it stacks children vertically */
  text-decoration: none;   /* Removes the underline from the link */
  color: #ffffff;          /* Use your existing text color */
}

/* This is the top line */
.brand-name {
  font-size: 1.5rem;       /* Makes the main name larger */
  font-weight: bold;       /* Makes it heavy */
  line-height: 1;          /* Prevents a huge gap under the text */
  color: #3160d6;
}

/* This is the bottom line */
.brand-tagline {
  font-size: 0.75rem;      /* Makes the tagline much smaller */
  text-transform: uppercase; /* Makes it look like a formal sub-title */
  letter-spacing: 1px;     /* Spaced out letters look more professional */
  margin-top: 2px;         /* A tiny bit of space between the two lines */
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}
.nav-links li {
  margin-left: 35px;
}
.nav-links a {
  color: #eee;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 300;
  transition: 0.3s;
  line-height: 1;
}
.nav-links a:hover {
  color: #c5a059;
}

/* --- Hamburger Specifics (Desktop Hidden) --- */
.menu-toggle, .hamburger {
  display: none;
}

.dropdown {
  position: relative;
  display: inline-block;
  padding: 0;
}

.dropdown > a {
  display: inline-block;
  line-height: 1;
}

/* Dropdown panel with fade animation */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111;
  width: 160px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 20000;

  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.dropdown-content li {
  margin: 0;
  padding: 0;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content li a {
  color: #eee !important;
  display: block;
  padding: 14px 18px;
  font-size: 0.6rem !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-left: 0 solid transparent;
  transition: border-left 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
}

.dropdown-content li a:hover {
  background: #222;
  border-left: 3px solid #c5a059;
  padding-left: 21px; 
}

.page-header {
  margin-top: 100px;
  padding: 2rem 0 1.5rem;
  text-align: center;
}
.page-header h1 {
  font-weight: 400;
}

.back-floating-btn {
  position: fixed;
  top: 130px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
  transition: 0.3s;
}
.back-floating-btn:hover {
  background: #c5a059;
  color: #fff;
  transform: translateX(-5px);
}

.back-to-top-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #c5a059;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 2000;
}

.hero, .gallery-page {
  padding-top: 100px;
}

.gallery-intro {
  padding: 60px 8%;
  text-align: center;
}
.gallery-intro h1 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.btn {
  background-color: #c5a059;
  color: #fff !important;
  padding: 15px 35px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 2px;
  transition: 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.contact-btn {
  border: 2px solid #c5a059;
  padding: 10px 22px !important;
}

.t-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  /* 1. This centers your smaller boxes in the middle of the screen */
  align-items: center; 
}

/* 2. Target the Hero box and the Portrait-Pair box */
.t-grid > div {
  width: 75%;           /* CHANGE THIS: Try 75% or 80% instead of 100% */
  max-width: 1200px;    /* Optional: prevents it from getting too huge on big monitors */
  box-sizing: border-box;
}

/* 3. Hero styling (unchanged) */
.landscape-hero {
  position: relative
}
.landscape-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* 4. Portrait pair styling */
.portrait-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%; /* Ensures the pair fills its 75% slot */
}

.portrait-pair img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* --- 6. FOOTER STYLES --- */
.main-footer {
  background: #111;
  color: #eee;
  padding: 60px 10% 20px;
  margin-top: 60px;
  border-top: 2px solid #c5a059; /* Matching the dropdown gold line */
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #3160d6; /* Matching your Blue logo span */
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-section h4 {
  color: #c5a059;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-section ul a:hover {
  color: #c5a059;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #222;
  font-size: 0.8rem;
  color: #666;
}

/* --- UPDATED MOBILE RULES --- */
@media (max-width: 800px) {
  body {
    padding-top: 0 !important;
  }

  .navbar {
    height: 80px !important;
    padding: 0 5% !important;
    flex-direction: row !important; /* Keep logo and hamburger side-by-side */
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }

  .hamburger span {
    width: 30px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }

  .nav-links {
    display: none; /* Hide by default */
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #111;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 20px 8% !important;
    margin-top: 0 !important;
    border-top: 1px solid #222;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  }

  .nav-links li {
    margin: 15px 0 !important;
    width: 100%;
  }

  .nav-links a {
    font-size: 1rem !important;
    display: block;
    width: 100%;
  }

  /* Checkbox Trigger */
  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  /* X Animation */
  .menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  .menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Dropdown inside Mobile Menu */
  .dropdown-content {
    position: static !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    transform: none !important;
    background: #1a1a1a !important;
    margin-top: 10px !important;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }
  .hero, .gallery-page {
    padding-top: 120px !important;
  }

  .back-floating-btn {
    top: 100px !important;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
