body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
}

.navbar-nav .nav-link {
  font-weight: 300;
  margin-left: 20px;
  font-size: 20px
}

.hero img {
  height: 90vh;
  object-fit: cover;
}

.navbar-brand img {
  height: 90px;   /* increase logo size */
  max-height: 90px;
  width: auto;    /* keeps proportions */
  margin-top: -20px;  /* adjust vertical alignment if needed */
  margin-bottom: -10px;
}

.logo {
  text-align: center;   /* centers all text inside */
  line-height: 1.2;     /* tighten spacing between the two lines */
}

.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-size: 44px;
  font-weight: 300; /* choose 300–700 depending on how bold you want */
  font-style: normal;
  color: #777;
}

.logo-first {
  color: #999;  /* lighter grey */
}

.logo-last {
  color: #555;  /* darker grey */
}

.logo-tagline {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 3px;
  color: #777;
}

/* Fade-in effect when a page loads */
.fade-in {
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0.01; }
  to { opacity: 1; }
}

/* Fade-out effect before leaving */
.fade-out {
  animation: fadeOut 1.5s ease-in-out;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Hero image fade-in with delay */
.hero img {
  opacity: 0.01;
  animation: fadeHero 1.5s ease-in-out forwards;
  animation-delay: .5s; /* starts after page fade-in */
}

@keyframes fadeHero {
  from { opacity: 0; transform: scale(.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Initial state */
.gallery-img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

/* Visible state */
.gallery-img.visible {
  opacity: 1;
  transform: translateY(0);
}

.grid {
  margin: 0 auto;   /* Center the container */
}

.grid-item {
  width: 400px;          /* base width */
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .grid-item {
    width: 45%;          /* 2 columns on tablets */
  }
}

@media (max-width: 576px) {
  .grid-item {
    width: 100%;         /* 1 column on mobile */
  }
}

.about h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.2rem;
}

.about img {
  object-fit: cover;
  max-height: 500px;
}

.pricing h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 2.5rem;
}

.pricing .card {
  border: none;
  transition: transform 0.2s ease-in-out;
}

.pricing .card:hover {
  transform: translateY(-5px);
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.featured-package {
  border: 2px solid #000; /* stronger border */
  transform: scale(1.03); /* slight size bump */
  z-index: 1;
}

.featured-package .badge {
  font-size: 0.9rem;
  padding: 0.5em 1em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing .btn {
  margin-top: 1rem;
  padding: 0.6em 1.2em;
  font-size: 1rem;
  border-radius: 0;
  transition: background-color 0.2s ease-in-out;
}

.pricing .btn:hover {
  background-color: #444;
}

/* Style for collapsed mobile menu */
@media (max-width: 991.98px) { /* Bootstrap lg breakpoint */
  .navbar-collapse {
    background: #fff; /* match site background */
    padding: 1.5rem;
    border-top: 1px solid #ddd;
    text-align: center;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
  }

  .navbar-nav .nav-link:hover {
    color: #666; /* subtle hover */
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none; /* removes Bootstrap’s blue outline */
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
}

.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: none;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}

.gallery_img.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gallery_img.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Default logo styling */
.logo-text {
  font-size: 2.5rem; /* adjust to your current default */
}

.logo-tagline {
  font-size: 1rem;
}

/* Shrink logo for iPhones (small screens) */
@media (max-width: 480px) {
  .logo-text {
    font-size: 1.8rem; /* smaller for iPhones */
  }

  .logo-tagline {
    font-size: 0.85rem; /* adjust tagline too */
  }
}
