/* /makeawish.photography/static/css/style.css */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Great+Vibes&display=swap');

/* 
font-family: 'Montserrat', sans-serif;  -- For body text
font-family: 'Great Vibes', cursive; -- For decorative/script text
*/

:root {
    --primary-color: #f7efa7;
    --dark-text: #333;
    --secondary-text: #555;
    --brand-blue: #4dabf7; /* From old CSS, can be used for accents */
}

body {
    /*background-color: var(--primary-color);*/
    background-color: #ececec;
    color: var(--dark-text);
    font-family: 'Montserrat', sans-serif;
}

/* --- Custom Font Class --- */
.font-script {
    font-family: 'Great Vibes', cursive;
    color: var(--dark-text);
    font-weight: 400;
}

/* --- Navbar --- */
.navbar {
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
}

.nav-link {
    font-weight: 700;
}

/* --- Hero Section --- */
.hero-carousel .carousel-item {
    height: 70vh; /* Adjust height as needed */
    min-height: 400px;
}

.hero-carousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.9);
}

/* --- About Us Section --- */
.about-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#about h2 {
    font-size: 4rem;
}

/* --- Gallery Section --- */
#gallery .card {
    border: none;
    background-color: #fff; /* White cards for contrast */
}

#gallery .card-img-top {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* --- Footer --- */
.footer {
    background-color: #e9e296; /* A slightly darker shade of yellow */
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.footer .text-muted {
    color: var(--secondary-text) !important;
}