/* Base Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f8ff; /* Light blue background */
    color: #333;
}

/* Hero Section */
#hero {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center everything vertically */
    align-items: center; /* Center everything horizontally */
    text-align: center;
    background: linear-gradient(to bottom, #e0f7fa, #ffffff); /* Light blue gradient */
    padding: 0 20px; /* Add some horizontal padding */
}

/* Scissors Animation */
.hero-animation img {
    width: 100px; /* Base size */
    animation: rotate-scissors 2s infinite ease-in-out;
    margin-bottom: -130px; /* Tighten spacing below animation */
    margin-top: 00px;
}

/* Logo */
.logo-container {
    margin: 0; /* No extra margin */
}

.logo {
    width: 80%; /* Enlarge logo for desktop */
    max-width: 350px; /* Limit max size */
    margin: 40px auto; /* Slight spacing around the logo */
    margin-top: -40px;
}

/* Tagline */
.tagline {
    font-size: 1.4rem; /* Larger text for tagline */
    font-weight: bold; /* Make the tagline bold */
    margin: -230px 0; /* Reduce spacing */
    color: #0077c2; /* Dark blue */
}

/* Book Now Button */
#book-now-btn {
    font-size: 1.3rem; /* Bigger font size for better visibility */
    padding: 12px 30px; /* Increase button size */
    background-color: #0077c2; /* Dark blue */
    border: none;
    border-radius: 8px; /* Rounded corners */
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    animation: button-pulse 2s infinite; /* Subtle pulse animation */
    margin-top: 300px; /* Tighten spacing above the button */
}

#book-now-btn:hover {
    background-color: #0059a3; /* Slightly darker blue on hover */
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Button Pulse Animation */
@keyframes button-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 119, 194, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(0, 119, 194, 0.7);
    }
}

/* Rotate Animation for Scissors */
@keyframes rotate-scissors {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #hero {
        padding: 10px; /* Adjust padding for smaller screens */
    }

    .hero-animation img {
        width: 80px; /* Smaller scissors animation for mobile */
    }

    .logo {
        width: 90%; /* Adjust logo size for mobile */
        max-width: 300px; /* Limit max size */
    }

    .tagline {
        font-size: 1.2rem; /* Adjust tagline size for mobile */
    }

    #book-now-btn {
        font-size: 1.2rem; /* Adjust button font size */
        padding: 10px 25px; /* Adjust padding for mobile */
    }


}


/* Title and Description Section */
#title-description {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(to top, #ffffff, #e0f7fa); /* Smooth transition from hero */
    color: #0077c2; /* Use the same dark blue as the tagline */
}

#title-description h2 {
    font-size: 3rem; /* Bigger, stylish title */
    font-weight: bold;
    letter-spacing: 2px; /* Add some letter spacing */
    text-transform: uppercase; /* Make the title uppercase */
    margin-bottom: 15px;
    background: linear-gradient(to right, #0077c2, #00c6ff); /* Stylish gradient text */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Apply gradient to text */
}

#title-description .location {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333; /* Softer color for location text */
    margin-top: 10px;
    max-width: 600px;
    margin: 0 auto; /* Center the description */
}
/* Diamond Styling */
.falling-diamonds {
    position: relative;
    display: flex;
    justify-content: center; /* Center the diamond horizontally */
    margin-bottom: 20px; /* Add spacing between the diamond and the content */
}

.falling-diamonds .diamond {
    width: 200px; /* Adjust size for better fit */
    height: auto;
    position: relative;
    top: 10px; /* Move the diamond slightly down */
}


/* About Me Section */
#about-me {
    padding: 50px 20px;
    background: linear-gradient(to bottom, #e0f7fa, #ffffff); /* Smooth transition */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allow stacking on smaller screens */
    text-align: left;
}

.about-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 30px; /* Space between image and text */
    padding: 20px;
}

/* Stylish Image */
.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
}

.about-image .image-frame {
    position: relative;
    border: 10px solid #0077c2; /* Blue border around the image */
    border-radius: 50%; /* Make it circular */
    padding: 5px; /* Add spacing between border and shadow */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Add shadow for depth */
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 50%; /* Make the image circular */
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out; /* Smooth hover effect */
}

.about-image:hover img {
    transform: scale(1.1); /* Slight zoom-in on hover */
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* About Me Section */
#about-me {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #ffffff, #e0f7fa); /* Smooth transition */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allow stacking on smaller screens */
    text-align: left;
}

.about-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px; /* Space between image and text */
    padding: 20px;
}

/* Luxurious Image Styling */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    position: relative;
}

.about-image .image-frame {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #dceefb); /* Subtle gradient background */
    padding: 15px; /* Frame thickness */
    border-radius: 15px; /* Rounded edges for luxury feel */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Elegant shadow for depth */
    overflow: hidden;
}

/* Shooting Stars Animation */
.shooting-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Ensure it doesn’t interfere with interactions */
    z-index: 1; /* Below the image */
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.3) 2px, transparent 2px);
    animation: shooting-stars 6s infinite;
    opacity: 0; /* Transparent effect */
}

@keyframes shooting-stars {
    0% {
        background-position: -100px -100px;
    }
    50% {
        background-position: 200px 200px;
    }
    100% {
        background-position: -100px -100px;
    }
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Inner image rounded corners */
    position: relative; /* Ensure it's above the stars */
    z-index: 2; /* Layer above the stars */
}

/* About Text */
.about-text {
    max-width: 600px; /* Limit the width for better readability */
    font-size: 1.2rem;
    color: #333; /* Dark text for contrast */
}

.about-text h2 {
    font-size: 2.5rem;
    color: #0077c2; /* Match the blue from other sections */
    margin-bottom: 20px;
    text-transform: uppercase; /* Professional look */
    letter-spacing: 2px; /* Add space for elegance */
    border-bottom: 4px solid #0077c2; /* Bold underline effect */
    display: inline-block;
    padding-bottom: 5px;
}

.about-text p {
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    #about-me {
        padding: 40px 10px;
    }

    .about-container {
        flex-direction: column; /* Stack image and text on mobile */
        text-align: center; /* Center align text for smaller screens */
    }

    .about-image {
        max-width: 300px; /* Adjust image size for mobile */
    }

    .about-text h2 {
        font-size: 2rem; /* Reduce heading size */
    }

    .about-text p {
        font-size: 1rem; /* Adjust paragraph size */
    }
}



/* Gallery Section */
#gallery {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#gallery h2 {
    font-size: 2.5rem;
    color: #0077c2; /* Match the theme */
    margin-bottom: 30px;
    text-transform: uppercase;
    border-bottom: 3px solid #0077c2; /* Underline for the heading */
    display: inline-block;
    padding-bottom: 5px;
}

/* Click for Prices Text */
#gallery .click-for-prices {
    font-size: 1rem;
    color: #555; /* Subtle gray color */
    margin: -20px 0 20px 0; /* Adjusted margins */
    text-align: center;
    font-style: italic; /* Slightly italicized for emphasis */
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    #gallery .click-for-prices {
        font-size: 0.9rem; /* Slightly smaller font on small screens */
        margin: -10px 0 15px 0; /* Adjusted margins for small screens */
    }
}


.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

gallery-item:hover, gallery-item:active  {
    transform: scale(1.05); /* Subtle zoom on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 0 0 10px 10px; /* Match the item corners */
}

.gallery-item:hover .gallery-info {
    opacity: 1;
    transform: translateY(0);
}

.gallery-info h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.gallery-info p {
    margin: 5px 0 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    #gallery h2 {
        font-size: 2rem;
    }

    .gallery-info h3 {
        font-size: 1rem;
    }

    .gallery-info p {
        font-size: 0.9rem;
    }
}

/* Add-ons Section */
#addons {
    padding: 50px 20px;
    background: linear-gradient(to bottom, #ffffff, #e0f7fa); /* Smooth transition */
    text-align: center;
    color: #333;
}

#addons h2 {
    font-size: 2.5rem;
    color: #0077c2; /* Match the theme */
    margin-bottom: 30px;
    text-transform: uppercase;
    border-bottom: 3px solid #0077c2; /* Stylish underline */
    display: inline-block;
    padding-bottom: 5px;
}

.addons-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    font-size: 1.2rem;
    border-top: 1px solid #ddd; /* Divider at the top */
    border-bottom: 1px solid #ddd; /* Divider at the bottom */
}

.addons-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd; /* Divider between items */
    transition: background-color 0.3s;
}

.addons-list li:last-child {
    border-bottom: none; /* Remove border for the last item */
}

.addons-list li:hover {
    background-color: #f0f8ff; /* Light blue hover effect */
}

.addons-list span {
    color: #333;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    #addons h2 {
        font-size: 2rem;
    }

    .addons-list {
        font-size: 1rem;
    }

    .addons-list li {
        padding: 10px 15px;
    }
}
/* Footer Section */
#footer {
    background-color: transparent; /* No background, blends into the page */
    color: #666; /* Subtle gray text */
    text-align: center;
    padding: 10px 0;
    font-size: 0.8rem; /* Small text size */
    font-family: Arial, sans-serif;
    margin-top: 20px; /* Add slight spacing above footer */
}

#footer p {
    margin: 0;
    line-height: 1.5;
}

