/* Variables */


:root {
    --primary: #57c1b6;
    /* Your signature teal */
    --secondary: #f0f0f0;
    /* Light grey/white for headings */
    --text: #a0a0a0;
    /* Muted grey for body text (better for long reading) */
    --accent: #57c1b6;
    /* Usually, accent matches primary or a secondary highlight */
    --footer-top-bg: #171717;
    --footer-bot-bg: #212121;

    --font-primary: 'Questrial', sans-serif;
    --font-text: 'Muli', sans-serif;
    --font-size-h1: 60px;
    --font-size-h2: 40px;
    --font-size-p: 14px;
}

html {
    accent-color: var(--primary);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-text);
    color: var(--text);
    line-height: 1.8;
    background-color: #080808;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--secondary);
    line-height: 1.2;
    font-weight: 400;
}

h1 {
    font-size: var(--font-size-h1);
    text-transform: capitalize;
}

h2 {
    font-size: var(--font-size-h2);
    text-transform: capitalize;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 22px;
    color: var(--primary);
    font-weight: 600;
    text-transform: capitalize;
}

p {
    font-size: var(--font-size-p);
    font-weight: 500;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-10 {
    margin-top: 10px;
}

/* Divider */
.divider {
    border-top: 3px solid var(--primary);
    width: 20%;
    margin: 20px 0;
}

.center-divider {
    margin: 20px auto;
    width: 10%;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    padding: calc(12.5px) 25px;
    transition: all 400ms ease;
    cursor: pointer;
    text-transform: capitalize;
}

.btn-primary {
    color: var(--primary);
    border: 1px solid var(--primary);
    background: transparent;
    border-radius: 0;
}

.btn-primary:hover {
    background: var(--primary);
    color: var(--secondary);
}

.btn-outline {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
    border-radius: 1px;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* Logo Images */
.site-logo {
    max-height: 60px;
    width: auto;
}

.site-logo-footer {
    max-height: 100px;
    width: auto;
}

/* Header */
.site-header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo a {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 500;
    color: var(--accent);
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li a {
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    padding: 10px 20px;
}

.main-nav ul li a:hover,
.main-nav ul li.active a {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
}

.close-menu {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-text-area {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-text-area h1 {
    color: var(--accent);
    margin-bottom: 0px;
}

.hero-text-area p {
    color: var(--accent);
}

/* About Section */
.about-section {
    padding: 0;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
}

.about-text-area {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 30px;
}

.about-block h2 {
    color: var(--secondary);
}

/* Services Section */
.section-heading.center {
    text-align: center;
}

.section-heading.center h2 {
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -15px 0;
}

.service-card {
    flex: 0 0 calc(33.333333% - 30px);
    max-width: calc(33.333333% - 30px);
    margin: 0 15px 30px;
}

.service-card img {
    width: 100%;
    transition: all 400ms ease;
}

.service-card img:hover {
    transform: scale(1.05);
}

.service-image {
    overflow: hidden;
}

.service-details {
    padding: 10px;
}

.service-details h3 {
    font-size: 25px;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-details p {
    font-size: 14px;
}

.service-list {
    list-style: none;
    margin-top: 15px;
    padding-left: 0;
}

.service-list li {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text);
}

.service-list li i {
    color: var(--primary);
    margin-right: 8px;
}

/* Join Us Section */
.join-section {
    position: relative;
    background-image: url('join-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.join-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;


}

.join-content {
    position: relative;
    z-index: 10;
}

.join-content h2,
.join-content p {
    color: var(--accent);
}

.join-content p {
    max-width: 750px;
    margin: 0 auto 20px;
}

/* Portfolio Section */
.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.portfolio-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.portfolio-item {
    overflow: hidden;
    margin-bottom: 30px;
}

.portfolio-item img {
    width: 100%;
    transition: all 400ms ease;
}

.portfolio-item img:hover {
    transform: scale(1.05);
}

/* ============================
   Album Gallery Section
   ============================ */
.album-section {
    padding-bottom: 40px;
}

.album-section .section-heading.center p {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 30px;
}

/* Swiper Album Grid */
.album-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 350px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #222;
}

.album-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(.25, .8, .25, 1), filter 0.4s ease;
}

.swiper-pagination-bullet {
    background: #555;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px;
    font-weight: 700;
}

.album-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

/* Overlay */
.album-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.album-item:hover .album-item-overlay {
    opacity: 1;
}

.album-item-icon {
    font-size: 36px;
    color: var(--primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
}

.album-item-label {
    color: #fff;
    font-family: var(--font-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
    text-align: center;
    padding: 0 12px;
}

/* ============================
   Lightbox
   ============================ */
.album-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.album-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox-img-wrap {
    position: relative;
    z-index: 2;
    max-width: 85vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.6);
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Lightbox buttons */
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-play {
    position: absolute;
    z-index: 3;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s ease;
    font-family: inherit;
}

.lightbox-close {
    top: 24px;
    right: 28px;
    font-size: 32px;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 44px;
    padding: 8px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary);
    transform: translateY(-50%) scale(1.2);
}

/* Lightbox footer */
.lightbox-footer {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-family: var(--font-text);
    font-size: 14px;
}

.lightbox-caption {
    opacity: 0.85;
    font-style: italic;
}

.lightbox-counter {
    opacity: 0.6;
    font-size: 13px;
}

.lightbox-play {
    position: relative;
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.lightbox-play:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lightbox-play.playing {
    color: var(--primary);
    border-color: var(--primary);
    animation: pulse-ring 1.4s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(87, 193, 182, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(87, 193, 182, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(87, 193, 182, 0);
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    padding-bottom: 60px;
}

.testimonial-card {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 20px;
    margin: 0 15px;
    /* Changed from light grey shadow to a subtle border/darker glow */
    background: #121212;
    border: 1px solid #222;
    width: calc(33.333% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.testimonial-link:hover {
    transform: translateY(-5px);
    /* Subtle teal glow on hover */
    box-shadow: 0 10px 20px rgba(87, 193, 182, 0.1);
}

.testimonial-content p {
    font-size: 14px;
    font-style: italic;
    /* Just for visual distinction, original is subjective */
}

.testimonial-author-block {
    display: flex;
    align-items: center;
    margin-top: 20px;
}


.author-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    margin-left: 15px;
}

.author-info h4 {
    color: var(--secondary);
    font-size: 20px;
    font-weight: 600;
}

.author-info span {
    color: var(--primary);
    font-family: var(--font-text);
    font-size: 16px;
}

/* Footer Section */
.site-footer {
    background: var(--footer-top-bg);
    text-align: center;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-col {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
    text-align: left;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 30px;
    color: var(--primary);
    display: block;
    margin: 0 0 20px;
}

.about-col p {
    color: var(--accent);
    font-size: 14px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: var(--primary);
    color: var(--text);
    margin-right: 10px;
    border-radius: 50%;
    /* Adding small radius for aesthetics, original has shape circle */
    font-size: 16px;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--accent);
}

.footer-col h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
}

.links-col ul {
    list-style: none;
}

.links-col ul li {
    margin-bottom: 10px;
}

.links-col ul li a {
    color: var(--accent);
    font-size: 14px;
}

.links-col ul li a:hover {
    color: var(--primary);
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.contact-item i {
    color: var(--accent);
    margin-right: 10px;
    margin-top: 5px;
}

.contact-item p,
.contact-item a {
    color: var(--accent);
    font-size: 14px;
}

.contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    background: var(--footer-bot-bg);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--accent);
    font-family: var(--font-primary);
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav ul li a {
        padding: 15px 20px;
        display: block;
    }

    .hero-text-area,
    .about-text-area {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .service-card,
    .testimonial-card,
    .footer-col {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .portfolio-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .album-masonry {
        columns: 2;
        column-gap: 14px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 32px;
    }

    /* Mobile Menu styles simplified */
    .mobile-menu-toggle {
        display: block;
        color: var(--accent);
        font-size: 24px;
        cursor: pointer;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 50%;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 60px;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
    }

    .main-nav.active {
        display: flex;
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid #222;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        color: var(--accent);
        font-size: 30px;
        cursor: pointer;
    }


    :root {
        --font-size-h1: 50px;
        --font-size-h2: 35px;
    }
}

@media (max-width: 500px) {
    :root {
        --font-size-h1: 45px;
        --font-size-h2: 32px;
    }

    .album-masonry {
        columns: 1;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-footer {
        flex-direction: column;
        gap: 8px;
    }
}