        body { font-family: 'Segoe UI', sans-serif; margin: 0; padding: 0; }
        header {
            background: #f3f3f3; padding: 0 20px; text-align: center;
            border-bottom: 2px solid #d4af37;
        }
        header h1 { margin: 0; color: #a52a2a; }
        nav {
            background: #d4af37; padding: 10px; text-align: center;
        }
        nav a {
            margin: 0 15px; color: white; font-weight: bold; text-decoration: none;
        }
        .content {
            padding: 40px 20px; max-width: 1000px; margin: auto;
        }
        form {
            background: #f9f9f9; padding: 25px; border-radius: 6px;
            box-shadow: 0 0 8px rgba(0,0,0,0.05);
        }
        form input, form textarea {
            width: 100%; padding: 10px; margin: 8px 0 16px;
            border: 1px solid #ccc; border-radius: 4px; resize: vertical;
        }
        form button {
            background-color: #a52a2a; color: white; padding: 12px 20px;
            border: none; border-radius: 4px; cursor: pointer;
        }
        form button:hover {
            background-color: #872626;
        }
        .info {
            margin-top: 40px; font-size: 15px;
        }
        .map {
            margin-top: 20px; border: 1px solid #ccc;
        }
        .success {
            padding: 10px; background: #d4edda; color: #155724;
            border-left: 5px solid #28a745; margin-bottom: 20px;
        }
        .error {
            padding: 10px; background: #f8d7da; color: #721c24;
            border-left: 5px solid #dc3545; margin-bottom: 10px;
        }
        footer {
            background: #f3f3f3; text-align: center; padding: 15px;
            border-top: 1px solid #ccc;
        }
				
				
.hero {
    position: relative;
    height: calc(100vh - 189px);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1.hero-message {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-button {
    background: #ffa500;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}
				
				
				

        .gallery-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        .gallery-grid img {
            width: 250px;
            height: 180px;
            object-fit: cover;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .gallery-grid img:hover {
            transform: scale(1.05);
        }

        /* Lightbox styling */
        #lightbox {
            display: none;
            position: fixed;
            z-index: 1000;
            background: rgba(0,0,0,0.85);
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
        }
        #lightbox img {
            max-width: 90%;
            max-height: 90%;
            border: 5px solid white;
            border-radius: 8px;
        }
        #lightbox:after {
            content: '✖';
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }

@media (max-width: 768px) {

    /* Header layout stacks on mobile */
    header > div {
        flex-direction: column;
        text-align: center;
    }

    header img {
        margin: 0 auto 10px;
        height: 100px;
    }

    header h1 {
        font-size: 32px;
    }

    header p {
        font-size: 12px;
    }

    /* Navigation links stack or shrink */
    nav {
        padding: 8px;
    }

    nav a {
        display: inline-block;
        margin: 6px 10px;
        font-size: 14px;
    }

    /* Hero section adjustments */
    .hero {
        height: auto;
        min-height: 400px;
    }

    .hero-content h1.hero-message {
        font-size: 20px;
        padding: 0 10px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Gallery adjustments */
    .gallery-grid {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid img {
        width: 90%;
        height: auto;
    }

    /* Form and content spacing */
    .content {
        padding: 20px 15px;
    }

    form input,
    form textarea {
        font-size: 14px;
    }

    form button {
        font-size: 14px;
    }

    /* Footer spacing */
    footer {
        font-size: 14px;
    }
		img {
				margin: 0 auto !important;
				display: block;
				text-align: center;
		}
		.hero-content {
				padding: 150px 0;
		}
}
@media (max-width: 1024px) {
  header h1 {
    font-size: 40px;
  }
}

nav {
  background: #d4af37;
  padding: 10px 20px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #d4af37;
    text-align: center;
    margin-top: 10px;
  }

  .nav-links.active {
    display: flex;
  }

	.nav-links a {
        padding: 0px 0 27px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        font-size: 24px;
        margin-top: -2px;
        line-height: 24px;
    }
}