@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Milonga&family=Monoton&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}

/* Color Variables */
:root {
    --main-color: #ff9800;
    --text-color: #ffffff; /* White text for better visibility on black */
    --bg-color: #000000; /* Black background for navbar */
}

/* Body and Header Styling */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    background-color: #ffffff;
}

/* Header Styling */
header {
    background-color: var(--bg-color);
    padding: 0; /* Remove extra padding */
    position: sticky; /* Make the entire header sticky */
    top: 0; /* Stick to the top */
    z-index: 1000; /* Ensure it stays on top of other content */
}
/* Navbar Styling */
.navbar {
    background-color: black !important;
    width: 100%;
    padding: 10px 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
   
}

}
/* Navbar Styling */
.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Additional Styling for Sticky Effect (Optional) */
.navbar.show {
    opacity: 1;
    transform: translateY(0);
}


/* Logo Styling */
header .navbar-brand img {
    width: 90px;
}

/* Center Navigation Links */
.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    margin: 0 15px; /* Space between links */
    transition: color 0.3s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--main-color);
}

/* Social Icons Styling */
.social-icons a {
    margin: 0 8px; /* Space between icons */
}

.social-icons a img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    transition: transform 0.4s, box-shadow 0.4s;
}

.social-icons a:hover img {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow for hover effect */
}

/* Responsive Navbar Animation */
.navbar {
    opacity: 0;
    transform: translateY(-100px);
}

.navbar.show {
    opacity: 1;
    transform: translateY(0);
}

 /* Custom styles for the navbar toggler */
 .navbar-toggler {
    background-color: transparent; /* Optional: to make the button background transparent */
}

.navbar-toggler-icon {
    background-color: #fff; /* Main color */
    border-radius: 5px; /* Optional: adds a slight rounded effect */
}

/* If you want to change the color of the toggler icon when active */
.navbar-toggler:focus .navbar-toggler-icon,
.navbar-toggler:hover .navbar-toggler-icon {
    background-color: #fff; /* Same main color */
    opacity: 0.7; /* Optional: slightly transparent on hover/focus */
}

/*albummmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm*/


/*   first page................................................................................................*/

.herooo-section {
    position: relative;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #7a5b1f;
    overflow: hidden;
}



/* Foreground Layer - bar2.jpg */
/* Foreground Layer - bar2.jpg with animation */
.herooo-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px; /* Height for bar2.jpg layer */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('./images/background.jpg') no-repeat center center/cover;
    z-index: -2;
  
}
/* Main Heading and Subtitle */
.herooo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 30px;
}

.herooo-content h1 {
    font-family: 'Milonga', cursive;
    font-weight: 600;
    font-size: 5em;
    font-weight: bold;
    color: var(--main-color);
    animation: dropDown 2s ease forwards;
    margin-top: 20px;
}

.herooo-content p {
    font-family: 'Playfair Display', serif;
    font-weight: 500; /* Adjust as needed for visual emphasis */
    font-size: 1em;
    color: #fff;
    animation: bottomUp 3s ease forwards;
}

/* Keyframes for Drop Down Effect on h1 */
@keyframes dropDown {
    0% {
        opacity: 0;
        transform: translateY(-50px); /* Start above */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}

/* Keyframes for Bottom Up Effect on p */
@keyframes bottomUp {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Start below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}




/* Keyframes for Background Movement */
/* Keyframes for Background Movement */
@keyframes backgroundMove {
    0% { background-position: center; }
    100% { background-position: center 10px; } /* Adjust the values to control movement */
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .herooo-section {
        height: auto;
    }

    .bar-box {
        flex-direction: column;
        position: static;
        margin-top: 20px;
    }

    .herooo-content h1 {
        font-size: 2.5em;
    }

    .herooo-content p {
        font-size: 1.2em;
    }
}

/* Gallery Navigation Section */
/* Container with Fixed Background Image */
.gallery-container {
    background: url('./images/background2.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center-aligns the entire container */
    justify-content: center;
    
  
   
}

/* Gallery Navigation Section */


/* Gallery Navigation Section */
.gallery-navigation-section {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
}

.gallery-buttons {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 300; /* Choose a default weight as needed */
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.gallery-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 152, 0, 0.9);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.gallery-buttons button:hover {
    background-color: #e68a00;
    transform: scale(1.1);
}

/* Style for active button to differentiate it when clicked */
.gallery-buttons button.active {
    background-color: #fb8c00; /* A distinct color, e.g., green */
    color: #ffffff; /* White text for contrast */
    transform: scale(1.4); /* Slightly larger */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add a shadow for emphasis */
    border: 1px solid #000; /* Optional: add a border */
}

/* Gallery Content Styling */
.gallery-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the gallery items */
    gap: 20px; /* Adjust gap for consistent spacing */
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-item {
    flex: 0 1 400px; /* Ensure all items are 400px wide */
    height: 400px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s ease, opacity 0.3s ease;}

.gallery-item.show {
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; /* Smooth image scaling */
}

.gallery-item p {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1em;
    transition: opacity 0.3s ease; /* Smooth text transition */
}

/* Hover Effects */
.gallery-item:hover {
    transform: scale(1.02); /* Slight zoom on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.05); /* Zoom the image slightly */
}

.gallery-item:hover p {
    opacity: 0.8; /* Make the text more visible on hover */
}

/* Bottom-to-Top Scroll Animation */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initial State for Animation */
.gallery-item {
    display: none; /* Hide all items by default */
    opacity: 0; /* Start hidden */
    transform: translateY(30px); /* Start 30px below */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When in view, apply the animation */
.gallery-item.in-view {
    animation: slideUp 0.6s ease forwards;
}

.gallery-item.show {
    display: block; /* Show items when the 'show' class is added */
}

/* Modal Styles */
.modal-nav {
    position: absolute;
    top: 50%;
    color: #ffffff;
    font-size: 2em;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    border-radius: 5px;
    transform: translateY(-50%);
    z-index: 1;
}

#prev-btn {
    left: 10px;
}

#next-btn {
    right: 10px;
}

.modal-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
