* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
.header {
    background: #353535;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header .logo img {
    max-width: 100px;
}

.navbar ul {
    list-style: none;
    float: right;
}

.navbar ul li {
    display: inline-block;
    margin-right: 20px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.navbar ul li a:hover {
    color: #f4b41a;
}
/* About Section */
.about-section {
    background: #fefefe;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 20px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.about-section .about-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery {
    margin-top: 40px;
    text-align: center;
}

.gallery h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.gallery .image-grid {
    display: flex;
    justify-content: space-between;
}

.gallery .image-grid img {
    width: 30%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    background: #f5f5f5;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.contact-info, .contact-form {
    width: 48%;
}

.contact-info h3, .contact-form h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, 
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.contact-form button {
    background: #333;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #555;
}

/* Payment Options */
.payment-options {
    text-align: center;
    padding: 40px 0;
    background: #fff;
    margin-top: 20px;
}

.payment-options h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.payment-options .payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.payment-options .payment-icons img {
    width: 60px;
    height: auto;
}

/* Video Tour Section */
.video-tour {
    background: #f5f5f5;
    padding: 40px 0;
    text-align: center;
    margin-top: 20px;
}

.video-tour h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.video-tour .video-wrapper {
    position: relative;
    display: inline-block;
}

.video-tour .video-wrapper img {
    max-width: 100%;
    border-radius: 8px;
}

.video-tour .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 24px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}
.side-menu {
    position: fixed;
    top: 0;
    right: -35%;
    width: 35%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 20px;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu ul li {
    margin: 15px 0;
}

.side-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

.side-menu.active {
    right: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.overlay.active {
    display: block;
}


.hamburger {
display: none; 
text-align: center;
font-size: 24px;
color: #fff;
margin-top: 10px; 
}

@media (max-width: 768px) {
.hamburger {
    display: block; 
}

.logo {
    text-align: center; 
}
}
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 0px;
    margin-bottom: 0px;
}
