/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Header styling */
header {
    background-color: #ffc107; /* Updated header color */
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px; /* Reduced margin */
    border: 1px solid #ffc107; /* Changed to yellow */
    border-radius: 30px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo p {
    font-family: 'Lobster', cursive;
    font-size: 24px;
    color: #000; /* Logo text color changed to black */
    margin: 0;
}

/* Navigation styling */
nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style-type: none; /* Remove bullet points */
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-links li {
    position: relative;
    margin: 0 10px; /* Reduced margin */
}

.nav-links li a {
    color: #000; /* Navigation menu color changed to black */
    text-decoration: none;
    font-size: 18px;
}

.nav-links li a:hover {
    text-decoration: underline;
}

.nav-links .dropdown {
    display: none;
    position: absolute;
    background-color: #ffc107;
    top: 100%;
    left: 0;
    min-width: 200px; /* Increased width */
    z-index: 1;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Added shadow */
    border: 1px solid #ffc107; /* Changed to yellow */
}

.nav-links .dropdown li {
    padding: 10px 15px;
    list-style-type: none; /* Remove bullet points */
}

.nav-links .dropdown li a {
    color: #000; /* Dropdown link color changed to black */
    font-size: 16px;
    text-decoration: none;
}

.nav-links .dropdown li a:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Hover effect */
}

.nav-links li:hover .dropdown {
    display: block; /* Show dropdown on hover */
}

.burger {
    display: none;
    cursor: pointer;
}

.burger i {
    color: #000; /* Burger icon color changed to black */
    font-size: 24px;
}

/* Hero section styling */
.hero {
    text-align: center;
    padding: 20px;
    background-color: #111;
    border: 1px solid #ffc107; /* Changed to yellow */
    margin: 10px; /* Reduced margin */
}

.hero h1 {
    font-size: 3rem; /* Responsive heading size */
    color: #ffc107;
    margin-top: 5px; /* Further reduced top margin */
    margin-bottom: 5px; /* Further reduced bottom margin */
}

.hero .responsive-image {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

.hero p {
    font-size: 1.5rem; /* Responsive paragraph size */
    color: #fff;
}

/* Section styling */
.about, .gallery, .contact {
    padding: 40px 20px;
    text-align: center;
    background-color: #111;
    border: 1px solid #ffc107; /* Changed to yellow */
    margin: 10px; /* Reduced margin */
}

.about h2, .gallery h2, .contact h2 {
    color: #ffc107;
    font-size: 2rem; /* Responsive heading size */
    margin-top: 5px; /* Further reduced top margin */
    margin-bottom: 5px; /* Further reduced bottom margin */
}

.about p, .gallery p, .contact p {
    font-size: 1rem; /* Responsive paragraph size */
}

/* Gallery grid styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
}

/* Contact form styling */
.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact form input,
.contact form textarea {
    padding: 10px;
    margin: 10px 0;
    width: 80%;
    max-width: 500px;
    border: 1px solid #ffc107; /* Changed to yellow */
    background-color: #fff;
    color: #000;
}

.contact form button {
    padding: 10px 20px;
    background-color: #ffc107;
    color: #fff;
    border: none;
    cursor: pointer;
}

.contact form button:hover {
    background-color: #e0a800;
}

/* Footer styling */
footer {
    background-color: #ffc107;
    padding: 10px 0;
    text-align: center;
    color: #000; /* Footer text color changed to black */
}

footer .social-links {
    margin-bottom: 10px;
}

footer .social-links a {
    color: #000; /* Social links color changed to black */
    margin: 0 10px;
    font-size: 24px;
}

footer p {
    margin: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #ffc107;
        position: absolute;
        top: 60px;
        left: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .burger {
        display: block;
    }

    .gallery-grid {
        grid-template-columns: 1fr; /* 1 image per row on smaller screens */
    }

    .hero h1 {
        font-size: 2rem; /* Adjusted responsive heading size */
    }

    .hero p {
        font-size: 1rem; /* Adjusted responsive paragraph size */
    }

    .about h2, .gallery h2, .contact h2 {
        font-size: 1.5rem; /* Adjusted heading size */
    }

    .about p, .gallery p, .contact p {
        font-size: 0.875rem; /* Adjusted paragraph size */
    }
}

@media (min-width: 769px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 images per row on larger screens */
    }
}

/* Contact buttons styling */
.contact-buttons {
    position: fixed;
    bottom: 20px; /* Position from the bottom */
    right: 20px; /* Position from the right */
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    z-index: 100; /* Ensure buttons are above other content */
}

.call-button,
.whatsapp-button {
    width: 50px; /* Width for circular buttons */
    height: 50px; /* Height for circular buttons */
    border-radius: 50%; /* Make buttons circular */
    display: flex;
    align-items: center; /* Center icon vertically */
    justify-content: center; /* Center icon horizontally */
    margin: 5px 0; /* Margin between buttons */
    color: #fff; /* Text color */
    text-decoration: none; /* Remove underline */
    transition: transform 0.3s; /* Transition for hover effect */
}

.call-button {
    background-color: #007bff; /* Blue color for call button */
}

.whatsapp-button {
    background-color: #25D366; /* WhatsApp color */
}

.call-button:hover,
.whatsapp-button:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}
