/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'adobe-caslon-pro', serif;
}

/* Announcement banner styling */
.announcement-banner {
    background-color: #E0FFFF;
    color: #333;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 16px;
    min-height: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.light-weight {
    font-weight: 100;
}
.bold-weight {
    font-weight: bold;
}

/* NAVBAR STYLING */
.navbar {
    padding: 0.5rem 1rem;
    font-family: 'adobe-caslon-pro', serif;
}
.navbar .container-fluid {
    padding-left: 1rem;
    padding-right: 2rem;
}
.navbar-brand img {
    height: 100px;
    width: auto;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    display: block;
}
.navbar-collapse {
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
}
.nav-item {
    margin-left: 20px;
}
.navbar-nav {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-left: 0;
    gap: 24px;
}
.nav-link {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333 !important;
}
@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px;
    }
    .nav-link {
        margin-left: 10px;
    }
}

/* HERO BANNER */
.hero-banner {
    margin-top: 2rem;
}
.hero-image {
    width: 100%;
    max-width: 100vw;
    height: auto;
    display: block;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 70%;
    left: 2vw;
    transform: translateY(-50%);
    z-index: 10;
    color: #111;
    max-width: 90vw;
    text-align: left;
    padding-right: 5vw;
}
.hero-overlay h1,
.hero-overlay h2,
.hero-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin: 0.05em 0;
    color: #111;
}
.hero-overlay h1 {
    font-size: clamp(1.25rem, 2vw, 2rem);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-overlay h2 {
    font-size: clamp(2rem, 6vw, 3.9rem);
    color: rgb(0, 218, 207);
}
.hero-overlay h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}
@media (max-width: 991px) {
    .hero-overlay {
        top: 60%;
        padding-right: 4vw;
    }
    .hero-overlay h1 {
        font-size: 1.2rem;
    }
    .hero-overlay h2 {
        font-size: 2.2rem;
    }
    .hero-overlay h3 {
        font-size: 1.4rem;
    }
}
@media (max-width: 576px) {
    .hero-overlay {
        top: 50%;
        left: 5vw;
        transform: translateY(-50%);
        padding-right: 2vw;
    }
    .hero-overlay h1 {
        font-size: 1rem;
    }
    .hero-overlay h2 {
        font-size: 1.7rem;
    }
    .hero-overlay h3 {
        font-size: 1.2rem;
    }
}

/* INTRO SECTION */
.intro-content {
    max-width: 960px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: #111;
}
.intro-content h1 {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #444;
    margin-bottom: 0.5rem;
}
.intro-content h2 {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    margin-bottom: 2rem;
}
.intro-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #111;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.contact-button {
    background: transparent;
    color: #111;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    border: 1px solid #888;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
    text-decoration: none;
}
.contact-button:hover {
    background-color: #111;
    color: #fff;
}

/* SLIDE SHOW */
.splide__slide img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* MEET YOUR PHOTOGRAPHERS */
.meet-photographers {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}
.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #333;
}
.photographers-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.photographers-image img {
    width: 400px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.photographers-text {
    max-width: 600px;
    font-size: 1.1rem;
    font-family: 'Libre Baskerville', serif;
    line-height: 1.75;
    text-align: justify;
}
.drop-cap {
    float: left;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1;
    margin-right: 10px;
    font-family: 'Playfair Display', serif;
}
@media (max-width: 768px) {
    .photographers-content {
        flex-direction: column;
        align-items: center;
    }
    .photographers-text {
        text-align: center;
    }
    .drop-cap {
        float: none;
        font-size: 2rem;
        display: inline-block;
        margin-right: 6px;
    }
}

/* PORTFOLIO */
.portfolio-container {
    margin-top: -90px;
    padding: 3rem 1rem;
}
.portfolio-header {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #3a3a3a;
    margin-bottom: 2rem;
}
.portfolio-items {
    background-color: #E0FFFF;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.portfolio-item {
    position: relative;
    width: 300px;
    flex-shrink: 0;
}
.portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 106, 106, 0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}
.portfolio-text {
    color: white;
    font-size: 1rem;
    font-family: 'Libre Baskerville', serif;
    text-align: center;
    padding: 0 10px;
}
.portfolio-link:hover .portfolio-overlay {
    opacity: 1;
}
@media (max-width: 768px) {
    .portfolio-items {
        gap: 1.5rem;
    }
    .portfolio-item {
        width: 100%;
        max-width: 400px;
    }
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 60px 20px;
    background-color: #fff;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}
.testimonial {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.testimonial-content {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}
.testimonial-content p {
    margin: 0;
}
.author {
    display: block;
    margin-top: 8px;
    font-size: 0.95rem;
    color: #555;
}
@media screen and (max-width: 600px) {
    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .testimonial-img {
        margin-bottom: 10px;
    }
    .testimonial-content {
        text-align: center;
    }
}

/* FOOTER */
.site-footer {
    background-color: white;
    color: #333;
    padding: 5px 0;
    font-family: 'adobe-caslon-pro', serif;
    font-weight: normal;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    align-content: center;
}
.footer-container {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    padding: 0 20px;
}
.footer-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.footer-section h3 {
    color: #acacac;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: .9rem;
    font-weight: bolder;
    text-transform: uppercase;
}
.footer-section a {
    color: #333;
    text-decoration: none !important;
    margin-bottom: 3px;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}
.footer-section a:hover {
    color: #5ff4f4;
    text-decoration: underline;
}
.social-media-icons {
    display: flex;
    justify-content: center;
    padding: 5px 0;
}
.social-media-icons a {
    font-size: 20px;
    margin: 0 10px;
}
.social-media-icons a i {
    color: #333;
    transition: color 0.3s ease;
}
.social-media-icons a i:hover {
    color: #c7fcfc;
}
.footer-credits {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #eaeaea;
}
.footer-credits p {
    color: #cdcdcd;
    font-size: 0.75rem;
    font-style: italic;
    margin: 0;
}

/* RESPONSIVE NAVBAR FIXED */
@media (max-width: 767.98px) {
    .navbar-collapse {
        flex-direction: column;
        align-items: flex-start;
        background-color: #fff;
        padding: 1rem;
        z-index: 1000;
    }
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        padding-left: 0;
    }
    .nav-item {
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        color: #222 !important;
        border-radius: 0.25rem;
    }
    .nav-link:hover {
        color: #5ff4f4 !important;
        background-color: #f7f7f7;
    }
    .navbar-toggler {
        border: none;
    }
    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }
    .navbar-brand img {
        max-height: 48px;
    }
}
@media (min-width: 768px) {
    .navbar-collapse {
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        flex-grow: 1;
    }
}