.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  background-color: rgba(59, 46, 47, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.logo-circle {
  width: 70px;
  height: 70px;
  background-color: #f8f5f5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #423738;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.logo-circle img {
  display: block;
  padding: 0;
  margin: 0;
}
.logo-circle::before {
  content: 'B-Hive';
  display: none;
}
.logo-circle img:not([src]) + ::before {
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li {
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding: 5px 10px;
  transition: all 0.3s ease;
}
.nav-links li a {
  color: #f9f6f6;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: var(--accent-gold);
}
.nav-links li::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--accent-gold);
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}
.nav-links li:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* About Us Section Styles */
.about-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(248, 245, 245, 0.9) 0%, rgba(232, 228, 228, 0.9) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('images/DSC08443_11zon.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 245, 245, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.why-bhive-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #423738 0%, #2a1f20 100%);
  color: #f8f5f5;
  position: relative;
  background-image: url('images/DSC08433_11zon.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.why-bhive-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(66, 55, 56, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}

.why-bhive-section .container {
  position: relative;
  z-index: 2;
}

/* What Makes Us Best Section Styles */
.best-pub-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f5f5 0%, #e8e4e4 100%);
  position: relative;
  background-image: url('images/DSC08101_11zon.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.best-pub-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 245, 245, 0.92);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1;
}

.best-pub-section .container {
  position: relative;
  z-index: 2;
}

.best-header {
  text-align: center;
  margin-bottom: 70px;
}

.best-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #423738;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.best-content {
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(66, 55, 56, 0.1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.98);
}

.feature-number {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #423738 0%, #2a1f20 100%);
  color: #f8f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #423738;
  margin-bottom: 15px;
  margin-right: 60px;
  line-height: 1.3;
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* Responsive Design for Best Pub Section */
@media (max-width: 768px) {
  .best-header h2 {
    font-size: 2.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-item {
    padding: 25px;
  }
  
  .feature-content h3 {
    font-size: 1.3rem;
  }
  
  .feature-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .best-header h2 {
    font-size: 1.8rem;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .feature-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    top: -10px;
    right: 15px;
  }
  
  .feature-content h3 {
    font-size: 1.2rem;
    margin-right: 50px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #423738;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-header h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #666;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  text-align: justify;
  font-weight: 300;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #f8f5f5;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.why-content {
  max-width: 900px;
  margin: 0 auto;
}

.why-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #f8f5f5;
  margin-bottom: 30px;
  text-align: justify;
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-header h1 {
    font-size: 2.5rem;
  }
  
  .about-header h2 {
    font-size: 1.4rem;
  }
  
  .why-header h2 {
    font-size: 2.2rem;
  }
  
  .about-text p,
  .why-text p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  .about-section,
  .why-bhive-section {
    padding: 100px 0 60px;
  }
}

@media (max-width: 480px) {
  .about-header h1 {
    font-size: 2rem;
  }
  
  .about-header h2 {
    font-size: 1.2rem;
  }
  
  .why-header h2 {
    font-size: 1.8rem;
  }
  
  .about-text p,
  .why-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    color: #222;
    flex-direction: column;
    width: 180px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-radius: 0 0 8px 8px;
    transform: translateX(100%);
    transition: transform 0.3s, opacity 0.3s;
    padding: 1rem 0;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
  }
  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li a {
    color: #222;
    padding: 1rem 2rem;
    display: block;
  }
  .hamburger {
    display: flex !important;
  }
}
@media (min-width: 901px) {
  .nav-links {
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .hamburger {
    display: none !important;
  }
}

/* ===================== Other Responsive Breakpoints ===================== */
@media (max-width: 768px) {
  .nav {
    padding: 15px 20px;
    justify-content: space-between;
  }
  .hamburger {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(66, 55, 56, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: left 0.3s ease-in-out;
    backdrop-filter: blur(10px);
  }
  .nav-links.show {
    left: 0;
  }
  .nav-links li {
    padding: 15px;
    text-align: center;
    font-size: 20px;
  }
  .nav-links li a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
  }
  .logo-circle {
    top: 12px;
    left: 20px;
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

.footer-cta {
  text-align: center;
  margin-bottom: 16px;
}

.footer-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #E59312 0%, #b49a8f 100%);
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(229,147,18,0.10);
  transition: all 0.3s ease;
}

.footer-cta-btn:hover {
  background: linear-gradient(90deg, #d4800f 0%, #a68a7f 100%);
  box-shadow: 0 6px 18px rgba(229,147,18,0.2);
}

.site-footer {
  background: linear-gradient(135deg, #2d2324 0%, #423738 100%);
  color: #fff;
  padding: 48px 0 16px 0;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 24px auto;
  padding: 0 24px;
  gap: 40px;
}

.footer-description {
  flex: 2 1 320px;
  margin-bottom: 24px;
}

.footer-description h2 {
  font-family: 'Playfair Display', serif;
  color: #E59312;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-description p {
  color: #f0f0f0;
  font-size: 1rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer-reserve-btn {
  display: inline-block;
  background: linear-gradient(90deg, #E59312 0%, #b49a8f 100%);
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(229,147,18,0.10);
  margin-top: 10px;
}

.footer-reserve-btn:hover {
  background: linear-gradient(90deg, #E59312 0%, #b49a8f 100%);
  box-shadow: 0 4px 16px rgba(229,147,18,0.10);
}

.footer-contact {
  flex: 1 1 260px;
  margin-bottom: 24px;
}

.footer-contact h3 {
  color: #E59312;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-contact a {
  color: #E59312;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  color: #b49a8f;
  font-size: 0.95rem;
  padding-top: 12px;
  border-top: 1px solid rgba(229,147,18,0.12);
  letter-spacing: 0.5px;
}

.footer-social {
  margin-top: 16px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #E59312;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #E59312;
  color: #fff;
}


/* Responsive Footer */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 18px;
    padding: 0 10px;
  }
  .footer-description,
  .footer-contact {
    margin-bottom: 10px;
  }
}

