@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Pacifico&family=Parisienne&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
/* Global Resets and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Navigation Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    max-height: 165px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #666;
}

.social svg {
    stroke: #333;
    transition: stroke 0.3s ease;
}

.social svg:hover {
    stroke: #666;
}

/* Home Section Styles */
#home {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.home-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.home-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}




/* Apply Font to Overlay Text */
.home-overlay h1 {
    font-family: "Dancing Script", cursive;
    font-size: 10rem;
    margin-bottom:-30px;
    font-weight: 700; /* Adjust weight as needed */
}

.home-overlay p {
    font-size: 2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #555;
}

/* Services Section */
#services {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-description {
    padding: 20px;
    text-align: center;
}

.services-cta {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
}

/* Events Section */
#events {
    background-color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}

/* Contact Form Styles */
#contact {
    background-color: #f4f4f4;
    padding: 100px 20px;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

#booking-form input,
#booking-form select,
#booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

#booking-form button {
    width: 100%;
    padding: 15px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#booking-form button:hover {
    background-color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .home-overlay h1 {
        font-size: 2.5rem;
    }

    .home-overlay p {
        font-size: 1.2rem;
    }

    .services-container {
        grid-template-columns: 1fr;
    }
}