/* General Styles */
body {
    font-family: 'Poppins', sans-serif; /* Elegant font */
    margin: 0;
    padding: 0;
    background: url('background.webp') no-repeat center center fixed; /* Add your image file here */
    background-size: cover; /* Make sure the background image covers the whole page */
    color: #fff; /* Make text white for better visibility on dark background */
}

/* Header */
header {
    color: white;
    padding: 120px 20px; /* Increased padding for better spacing */
    text-align: center;
    font-size: 32px; /* Increased font size */
    font-weight: 700; /* Bold font */
    letter-spacing: 2px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    background: rgba(92, 124, 250, 0.7); /* Soft blue with opacity */
    margin-bottom: 40px; /* Added margin for spacing below header */
}

/* Navigation */
nav {
    width: 100%; /* Ensure the navigation stretches across the entire width */
    text-align: center;
    position: absolute; /* Position the navigation at the top */
    top: 20px; /* Adjusted for space below header */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    z-index: 1000; /* Ensure it's on top of other elements */
}

nav ul {
    list-style: none;
    background: rgba(0, 0, 0, 0.8); /* Cool deep blue */
    padding: 20px;
    border-radius: 30px; /* Rounded corners for a smoother look */
    margin: 0;
    display: inline-flex;
    gap: 30px; /* Increased gap for better spacing between items */
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 22px; /* Increased font size */
    padding: 10px 20px; /* Added more padding for better touch target */
    display: block;
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effect */
}

nav ul li a:hover {
    color: #d6e6f2;
    text-decoration: underline;
    transform: scale(1.1); /* Slightly increase the size on hover for emphasis */
}

/* Sections */
section {
    padding: 60px 40px; /* Increased padding for more spacious content */
    text-align: center;
    background: rgba(0, 0, 0, 0.6); /* Dark transparent background */
    color: white; /* White text for better contrast */
    margin: 40px auto; /* Adjusted margin to create space between sections */
    border-radius: 15px;
    width: 90%;
    max-width: 1200px; /* Increased max-width for wider content */
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.gallery {
    display: flex;
    justify-content: center;
    gap: 30px; /* Increased gap between images */
    flex-wrap: wrap;
    margin-top: 40px; /* Added more space above gallery */
}

.gallery img, 
.gallery video {
    width: 280px;
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Image Hover Effect */
.gallery img:hover, 
.gallery video:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    width: 320px; /* Slightly wider form */
    margin: auto;
    background: rgb(22, 162, 187);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
}

/* Text Color Adjustments for Links and Buttons */
button {
    background: #4263eb;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 18px; /* Larger font size for buttons */
    font-weight: bold;
    transition: background 0.3s ease;
    border-radius: 5px; /* Rounded corners for the button */
}

button:hover {
    background: #5c7cfa;
}

/* Spacing Adjustments for Navigation and Sections */
section h2 {
    font-size: 36px; /* Increased header size in sections */
    font-weight: 700;
    margin-bottom: 30px; /* Added margin for spacing */
}

