
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #555;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
}

/* Navbar */
nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;      
  padding: 12px 30px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

nav a {
  margin-left: 20px;        
  text-decoration: none;    
  color: #333;              
  font-weight: 500;        
  transition: color 0.3s ease;    
}

nav a:hover {
  color: #800000;            
}

/* Container Layout */
.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 30px;
  gap: 30px;
  align-items: center;
}

.about {
  padding: 20px;
}

.about h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #800000;
}

.about p {
  margin: 10px 0;
  font-size: 15px;
  color: #444;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #800000;
  border-radius: 6px;
  text-decoration: none;
  color: #800000;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #800000;
  color: #fff;
}

/* Image */
.main-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Map */
.map {
  padding: 30px;
  text-align: center;
}

.map img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Gallery */
.gallery {
  padding: 30px;
  text-align: center;
}

.gallery h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #800000;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #8B0000;
  color: #fff;
  padding: 30px 20px;  
  font-size: 14px;      
  margin-top: 40px;    
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;            
  max-width: 1100px;    
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;    
  padding: 10px;        
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 8px;  
  font-size: 16px;      
  font-weight: bold;
}

.footer-section p {
  margin: 6px 0;
  color: #ddd;
  font-size: 13px;
}

/* Social Icons */
.social-icons {
  margin: 8px 0;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 16px;      
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff6f61;
}

/* Inquiry Form */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inquiry-form input {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.inquiry-form button {
  padding: 8px;
  border: none;
  border-radius: 20px;
  background: #800000;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.inquiry-form button:hover {
  background: #a52a2a;
}

/* Copyright */
.copyright {
  margin-top: 10px;
  font-size: 12px;
  color: #bbb;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

