/* Reset default margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: center;
    
    margin: 0;
    padding: 0;
    background-color: #4f4f4f;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Basic styling for header */
header {
    background-color: #2c2c2c;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-text {
    color: #fff; /* Text color */
    font-size: 14px; /* Font size */
    margin-left: 10px; /* Adjust margin as needed */
    margin-right: 10px;
}


/* Container for header content */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Add padding to create space */
}

/* Logo styling */
.logo {
    width: 50px; /* Adjust size as needed */
    height: auto;
    margin-right: 20px; /* Add margin to separate logo from menu tabs */
    margin-left: 5px
}

/* Navigation menu styling */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding-bottom: 5px;
    transition: color 0.3s, border-bottom 0.3s; /* Smooth transition for color and underline */
}

/* Hover effect for navigation links */
nav ul li a:hover {
    color: #7884B7; /* Darkened color on hover */
    border-bottom: 2px solid #7884B7; /* Underline on hover */
}


main {
    padding: 35px 0px; 
}

footer {
    background-color: #2c2c2c;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    width: 100%;
    bottom: 0;
}

/* Example styles for image */
.image-container {
    text-align: center; /* Center the image horizontally */
    margin-top: 10px; /* Adjust spacing as needed */
    margin-bottom: 0px;
}

.image-container img {
    max-width: 100%; /* Ensure the image scales down for smaller screens */
    height: auto; /* Maintain aspect ratio */
}
.image-container2 {
    text-align: center; /* Center the image horizontally */
    margin-top: 0px; /* Adjust spacing as needed */
    margin-bottom: 20px;
}

.image-container2 img {
    max-width: 100%; /* Ensure the image scales down for smaller screens */
    height: auto; /* Maintain aspect ratio */
}

.image-container3 {
    text-align: center; /* Center the image horizontally */
    margin-top: 20px; /* Adjust spacing as needed */
    margin-bottom: 20px;
}

.image-container3 img {
    max-width: 70%; 
    height: auto;
}

.sale-section {
    background-color: #fff; 
    color: #7884B7;
    text-align: center;
    padding: 20px 0;
    margin-top: 0;
}

.sale-section .container {
    width: 100%;
    margin-top: 0;
}

.sale-section h2 {
    font-size: 24px;
    margin-bottom: 0;
}

.sale-section .btn {
    display: inline-block;
    background-color: #6f8abd;
    color: #4f4f4f;
    text-decoration: none;
    padding: 10px 50px;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 0px;
}

.sale-section .btn:hover {
    background-color: #2f5472; /* Darker background on hover */
    color: #ffffffd1;
}

/* Styles for divider */
.divider {
    text-align: center;
    margin: 40px 0;
}

.divider-line {
    display: inline-block;
    width: 50%; /* Adjust width as needed */
    height: 1px;
    background-color: #d4d7d1;
    vertical-align: middle;
}

.divider-text {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    padding: 0 10px;
}

.divider-left-line,
.divider-right-line {
    display: inline-block;
    width: calc(100% - 0px); /* Adjust width as needed */
    height: 2px;
    background-color: #d4d7d1;
    vertical-align: middle;
}

/* Styles for social icons */
.social-icons {
    text-align: center;
    margin-top: 20px;
}

.social-icons .social-icon {
    width: 40px; /* Adjust size as needed */
    height: auto;
    margin: 0 20px;
    margin-bottom: 20px
}

.social-icons .social-icon:hover {
    opacity: 0.8; /* Reduce opacity on hover */
}
/* Set the size of the div element that contains the map */
#map {
    height: 360px; /* Static height for desktop */
    width: 60%; /* Initial width for mobile */
    margin: 0 auto; /* Center the map horizontally */

    /* Additional styles for better appearance */
    background-color: #f0f0f0; /* Light gray background */
    border: 1px solid #ccc; /* Light border */
}

/* Media query for smaller screens (up to 550px) */
@media (max-width: 550px) {
    #map {
        width: 90%; /* Increase width to 90% for smaller screens */
    }
}
@media (max-width: 2000px) {
    .divider-left-line,
    .divider-right-line {
        width: 25%; 
    }
}
/* Styles for hamburger menu */
.hamburger-menu {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger-icon.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.menu-links {
    display: none; /* Hide menu links by default */
    position: absolute; /* Absolute position relative to the header or body */
    top: 60px; /* Adjust top position as needed */
    right: 20px; /* Adjust right position to align with the hamburger menu */
    background-color: #6f8abd;
    width: 200px; /* Set a fixed width for the menu */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better visibility */
    z-index: 1000; /* Ensure menu is above other content */
    flex-direction: column; /* Stack items vertically */
}

.menu-links.active {
    display: flex; /* Use flex to show menu links as a column */
}

.menu-links li {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #0f2536; /* Optional: Add a separator between menu items */
    width: 100%; /* Ensure full width for each item */
}

.menu-links li:last-child {
    border-bottom: none; /* Remove border from the last menu item */
}

.spotify-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px; /* Optional: Add margin to the top */
}

.spotify-iframe {
    border-radius: 12px;
    width: 80%; /* Adjust width as needed */
    max-width: 600px; /* Optional: Max width for larger screens */
}

.contact-section {
    background-color: #12344F;
    color: #fff;
    padding: 20px 0;
    margin: 40px 0;
}

.contact-section .container {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    color: #333;
}

.contact-form button.btn {
    background-color: #7884B7;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button.btn:hover {
    background-color: #2f5472;
}

header, footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 10px 0;
}

.gallery {
    padding: 20px;
}

.gallery h2 {
    margin-bottom: 20px;
}

.gallery-container {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.gallery-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-item {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
} 
