/* Base Styles */
:root {
  --primary: #1a1a1a;
  --secondary: #c19e5f;
  --accent: #8b0000;
  --light: #f8f8f8;
  --gray: #555;
}

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

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--primary);
  background-color: var(--light);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 15px;
}

h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--secondary);
}

p {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.btn:hover {
  background: #6a0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  box-shadow: 0 4px 15px rgba(193, 158, 95, 0.2);
}

.btn-secondary:hover {
  background: #a8854d;
  box-shadow: 0 6px 20px rgba(193, 158, 95, 0.3);
}

section {
  padding: 80px 0;
}

/* Header */
header {
  background-color: rgba(26, 26, 26, 0.95);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.logo span {
  color: var(--secondary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

nav ul li a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}

nav ul li a:hover {
  color: var(--secondary);
}

nav ul li a:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
    url("https://images.unsplash.com/photo-1567958451986-2de427a4a0be?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center
      center / 100% 100% no-repeat;
  height: 100vh;
  width: 100vw;
  min-height: 700px;
  display: flex;
  align-items: center;
  text-align: center;
  color: black;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 60px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease;
}

.hero .tagline {
  font-size: 2rem;
  background-color: rgb(177, 87, 87);
  color: var(--secondary);
  margin-bottom: 2rem;
  border-radius: 20%;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  background-color: #c4adad;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero .btn {
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

/* Gallery Section */
.gallery {
  background-color: white;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gallery h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: #2c3e50;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.gallery h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #e74c3c;
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  height: 400px;
}

.gallery-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

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

.gallery-item .caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 25px 20px;
  color: white;
  z-index: 2;
}

.gallery-item .caption-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.gallery-item .caption-overlay p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* New Hover Overlay */
.gallery-item .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover .hover-overlay {
  opacity: 1;
}

.explore-button {
  background: #e74c3c;
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.explore-button:hover {
  background: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

.explore-button i {
  transition: transform 0.3s ease;
}

.explore-button:hover i {
  transform: translateX(5px);
}


@media (max-width: 768px) {
  .gallery-grid {
    gap: 20px;
  }

  .gallery-item {
    height: 350px;
  }

  .gallery h2 {
    font-size: 1.8rem;
  }
}

/* About Section */
.about {
  background-color: #f5f5f5;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 25px;
}

.owner-info {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.owner-info h3 {
  color: var(--accent);
  margin-bottom: 15px;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact {
  background: linear-gradient(to right, var(--primary) 50%, var(--primary) 50%);
  color: white;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-info {
  background: var(--primary);
  padding: 50px;
}

.contact-info h2 {
  color: white;
}

.contact-info h2:after {
  background: var(--secondary);
}

.contact-details {
  margin: 30px 0;
}

.contact-details p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-details i {
  margin-right: 15px;
  color: var(--secondary);
  font-size: 1.2rem;
}

.map-container {
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  padding: 50px 0 20px;
}

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

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--secondary);
}

.social-links {
  display: flex;
  margin-top: 20px;
  display: contents;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  height: 3px;
  background: var(--secondary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #aaa;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    background: var(--primary);
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }
  nav.active {
    height: 250px;
  }
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  nav ul li {
    margin: 15px 0;
  }
  section {
    padding: 60px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    max-height: 40vh;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero .tagline {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    width: 95%;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .tagline {
    font-size: 1.3rem;
  }
  .hero p {
    font-size: 1rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .btn {
    padding: 12px 25px;
  }
}

.tej {
  color: white;
}
