/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2 {
  direction: rtl;
}

.secular-one-regular {
  font-family: "Secular One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

:root {
  --primary: #520000;
  --light: #ffffff;
  --dark: #222222;
}

body {
  font-family: 'Secular One', sans-serif;
  background-color: #f5f5f5;
  color: var(--dark);
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  background-color: var(--primary);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.navbar .logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--light);
}

/* Hero Section */
.hero {
  background: url('https://via.placeholder.com/1200x600') center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero .container {
  position: relative;
  color: var(--pri);
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  z-index: 1;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Hero Gallery */
.hero-gallery {
  margin-top: 3rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.05);
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Button */
.btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--light);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: #400000;
}

/* About Section */
.about {
  background-color: var(--light);
  padding: 4rem 0;
  text-align: center;
}
.about p {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: 1rem;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
}
.contact form {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact input,
.contact textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}
