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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: #333;
    background: #000;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.topbar {
    order: 2;
}

.tp-social a {
    color: #fff;
    font-size: 18px;
    margin-left: 15px;
    transition: color 0.3s;
}

.tp-social a:hover {
    color: #ff4757;
}

nav {
    order: 1;
    flex: 1;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 12px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff4757;
}

/* Intro Section */
#intro {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    padding: 0 0 80px 0;
    text-align: center;
    color: white;
    margin-top: 70px;
}

#intro img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

#intro .hero-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    letter-spacing: 3px;
}

#intro .titles {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3em;
    margin: 10px 0;
    font-weight: 300;
}

#intro .tagline {
    font-family: 'Vollkorn', serif;
    font-size: 1.5em;
    font-style: italic;
    margin-top: 20px;
    font-weight: 700;
}

/* About Section */
#about {
    background: #1a1a1a;
    padding: 80px 0;
}

#about h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: white;
}

.quote {
    font-family: 'Vollkorn', serif;
    font-size: 1.15em;
    font-style: italic;
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.6;
}

.quote a {
    color: #ff4757;
    text-decoration: none;
}

.quote a:hover {
    text-decoration: underline;
}

.about-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-image {
    flex: 0 0 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-text {
    flex: 1;
    color: white;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05em;
}

.about-text a {
    color: #ff4757;
    text-decoration: none;
}

.about-text a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 20px;
    font-size: 24px;
}

.social-links a {
    color: white;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ff4757;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    color: white;
}

.content-section:nth-child(even) {
    background: #0d0d0d;
}

.content-section:nth-child(odd) {
    background: #1a1a1a;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.section-head h5 {
    color: #999;
    font-size: 1.1em;
    font-weight: 400;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.content-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.content-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-details {
    padding: 20px;
    text-align: center;
}

.content-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.content-details p {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 8px 20px;
    background: #ff4757;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    transition: background 0.3s;
}

.btn:hover {
    background: #ff3838;
}

/* Footer */
footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    color: #666;
    border-top: 1px solid #333;
}

footer a {
    color: #ff4757;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    user-select: none;
}

.lightbox-close:hover {
    color: #ff4757;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    user-select: none;
    padding: 5px;
    z-index: 10000;
}

@media (min-width: 769px) {
    .lightbox-prev,
    .lightbox-next {
        padding: 20px;
    }
}

.lightbox-prev {
    left: 100px;
}

.lightbox-next {
    right: 100px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #ff4757;
}

.lightbox-caption {
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    text-align: center;
    max-width: 80%;
    user-select: none;
    margin-top: 20px;
}

.clickable-image {
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
    position: relative;
}

.clickable-image:hover {
    opacity: 0.8;
}

/* Expand icon overlay for clickable images */
.gallery-item,
.content-item {
    position: relative;
}

.clickable-image::after {
    content: '\1F50D';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 71, 87, 0.9);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.gallery-item:hover .clickable-image::after,
.content-item:hover .clickable-image::after {
    opacity: 1;
}

/* Mobile: Show icon on tap/touch */
@media (max-width: 768px) {
    .clickable-image::after {
        opacity: 0.7;
        width: 35px;
        height: 35px;
        font-size: 18px;
        bottom: 8px;
        right: 8px;
    }
}

/* Image Gallery Styles */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-item h5 {
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 0.9em;
}

/* Mobile Carousel - Desktop: Keep grid layout */
@media (min-width: 769px) {
    .mobile-carousel .swiper-wrapper {
        display: contents;
    }

    .mobile-carousel .swiper-pagination {
        display: none;
    }

    .mobile-carousel.swiper {
        overflow: visible;
    }
}

/* Swiper pagination styling */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: #ff4757;
    width: 20px;
    border-radius: 4px;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Subsection Styles */
.subsection {
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.subsection h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ff4757;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }

    .topbar {
        order: 1;
        margin-bottom: 15px;
    }

    nav {
        order: 2;
    }

    nav ul {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 5px 8px;
    }

    nav ul li a {
        font-size: 11px;
    }

    #intro {
        padding: 0;
        margin-top: 200px;
    }

    #intro .container {
        padding: 0;
        max-width: 100%;
    }

    #intro img {
        width: 100%;
        max-width: 100%;
        display: block;
        margin: 0;
    }

    #intro .hero-name {
        font-size: 2.5em;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        flex: 1;
        text-align: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .gallery-item img {
        height: 200px;
    }

    /* Mobile Carousel Overrides */
    .mobile-carousel.swiper {
        overflow: hidden;
        padding-bottom: 45px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .mobile-carousel .swiper-slide {
        width: 75%;
        height: auto;
    }

    .mobile-carousel .swiper-pagination {
        bottom: 0;
    }

    .mobile-carousel .gallery-item img,
    .mobile-carousel .content-item img {
        height: 300px;
    }

    .mobile-carousel .swiper-wrapper {
        width: 100%;
    }

    /* Swipe hint */
    .mobile-carousel::before {
        content: '← Swipe →';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 10px 20px;
        border-radius: 20px;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        z-index: 10;
        pointer-events: none;
        animation: fadeOutSwipeHint 3s ease-out forwards;
    }

    @keyframes fadeOutSwipeHint {
        0% { opacity: 1; }
        60% { opacity: 1; }
        100% { opacity: 0; visibility: hidden; }
    }

    /* Better thumbnail display - show full image */
    .mobile-carousel .gallery-item img,
    .mobile-carousel .content-item img {
        object-fit: contain;
        background: rgba(0, 0, 0, 0.3);
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    .lightbox-prev {
        left: 2px;
    }

    .lightbox-next {
        right: 2px;
    }
}
