/* Define the color scheme */
:root {
  --primary-color: #4C0723; /* Dark Maroon */
  --secondary-color: #262728; /* Charcoal */
  --accent-color: #B9B6B0; /* Light Grayish Taupe */
  --text-color: #1D1E1F; /* Very Dark Gray */
  --background-color: #F5F5F5; /* Light Gray */
}

/* General Styles */


body {
  font-family: 'Baloo Tamma 2', cursive;
  line-height: 1.6;
  background-color: var(--background-color);
  color: var(--text-color);
}

.container {
  width: 80%;
  margin: 0 auto;
}

/* Header Styling */
header {
  background-color: var(--secondary-color);
  color: var(--accent-color);
  padding: 1rem 0;
  text-align: center;
}

.logo {
  max-width: 100%;
  width: 25vw;
  height: auto;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

header nav ul li {
  margin: 0 1rem;
}

header nav ul li a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
}

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

/* Hero Section Styling */
#hero {
  background: url('https://via.placeholder.com/1200x600') no-repeat center center/cover;
  color: var(--accent-color);
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#hero h2 {
  font-size: 3rem;
}

#hero p {
  font-size: 1.25rem;
}

#hero .btn {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

#hero .btn:hover {
  background-color: var(--secondary-color);
}

/* Section Styling */
section {
  padding: 4rem 0;
}

#about p {
  font-size: 1.25rem;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
}

/* Contact Form Styling */
#contact-form {
  display: flex;
  flex-direction: column;
}

#contact-form input, #contact-form textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid var(--accent-color);
}

#contact-form button {
  padding: 0.75rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#contact-form button:hover {
  background-color: var(--secondary-color);
}

/* Footer Styling */
footer {
  background-color: var(--secondary-color);
  color: var(--accent-color);
  text-align: center;
  padding: 1rem 0;
}