/* General body and resets */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #fff;
}

/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Topbar styles */
.topbar {
    background-color: #b9293e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 20px;
    height: 70px; /* Fixed height for the topbar */
}

.topbar .logo img {
    height: 70px;
    width: auto;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Welcome section styles */
.welcome {
    background: url('studio.jpg') no-repeat center center/cover;
    height: calc(100vh - 70px); /* Adjusted height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.welcome::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.welcome-content {
    position: relative;
    z-index: 2;
    transform: translateY(-25px);
}

.welcome-content h1 {
    font-family: 'Lora', serif;
    font-size: 65px;
    font-weight: 500;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.welcome-content p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Gallery section styles */
.gallery {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

.gallery h2 {
    font-family: 'Lora', serif;
    color: #333;
    font-size: 36px;
    margin-bottom: 30px;
}

.gallery-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    overflow: hidden; /* Ensures no overflow of content */
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out; /* Smooth transformation on hover */
}

.gallery-item img:hover {
    transform: scale(1.1); /* Scales the image up on hover */
}

/* Products section styles */
.products {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.products h2 {
    font-family: 'Lora', serif;
    color: #333;
    font-size: 36px;
    margin-bottom: 30px;
}

.product-list {
    display: flex;
    justify-content: center;
    gap: 75px;
    margin-top: 35px;
}

.product-item {
    width: 300px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.product-item .product-price {
    font-size: 16px; /* Smaller font size for the price */
    color: #666; /* Slightly muted color for the price */
    margin-top: 10px; /* Space between the title and the price */
}

.product-item img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
}

.product-item h3 {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

/* Booking section styles */
.booking {
    padding: 50px 20px;
    text-align: center;
    background-color: #e8e8e8;
}

.booking-content img {
    max-width: 55%; /* Adjust this value as needed */
    height: auto;
    margin: 0 auto 20px; /* Center the image horizontally */
    display: block; /* Ensures the image is treated as a block-level element */
}

.booking-content h2 {
    font-family: 'Lora', serif;
    color: #333;
    font-size: 32px;
    margin-bottom: 15px;
}

.booking-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.booking-content button {
    font-size: 18px;
    padding: 10px 20px;
    background-color: #b9293e;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-content button:hover {
    background-color: #a22030;
}

/* Footer styles */
footer {
    background-color: #3c3c3c;    /* Dark gray background */
    color: #e0e0e0;               /* Light gray text color for contrast */
    font-size: 14px;              /* Reduced font size for cleaner look */
    text-align: center;           /* Center-align footer text */
    padding: 10px 20px;           /* Reduced padding for a slimmer footer */
    border-top: 1px solid #484848; /* Subtle border to separate from content */
    transition: opacity 0.3s ease; /* Smooth transition for hovering effects */
    font-weight: 300;             /* Applying lightness as font-weight 300 */
}

footer p {
    margin: 0;                    /* Remove default bottom margin on paragraph */
    line-height: 1.4;             /* Adjust line height */
}

footer:hover {
    opacity: 0.9;                 /* Slight transition for interactive feedback */
}

/* Existing styles omitted for brevity */

/* Contact Section Styles */
.contact {
    padding: 50px 20px;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 1.1em;
    text-align: left;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding is included in the width */
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    color: #fff;
    background-color: #e63946;
    border: none;
    cursor: pointer;
    text-align: center; /* Ensure text is centered */
}

.contact-form button:hover {
    background-color: #d62828;
}

/* Contact Details Styles */
.contact-details {
    text-align: center;
    margin: 20px 0;
    font-size: 1.1em;
    color: #333;
}