/* ================= GLOBAL ================= */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&display=swap");
@import url("https://api.fontshare.com/v2/css?f[]=neometric@200,300,400,500,600,700&display=swap");
@font-face {
    font-family: "Naston";
    /*src: url("/web/css/naston-regular.ttf") format("truetype");*/
    src: url("/public/web/css/naston-regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
body {
    margin: 0;
    /*font-family: "Inter", sans-serif;*/
    /*font-family: "Neometric", sans-serif;*/
    font-family: "Naston", sans-serif;
    color: #010101;
}

h1,
h2,
h3,
h4 {
    font-family: "Naston", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 80px 24px;
}

/* ================= HEADER ================= */
/* Font (same clean style) */
/* ===============================
   HEADER
================================ */
/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.4s ease;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
}
.site-header.scrolled {
    background: #0b0b0b;
    /* background: white; */
    /*padding: 15px 60px;*/
}

.header-container {
    max-width: 1300px;
    margin: auto;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header-logo img {
    height: 45px;
}

/* Desktop Menu */
.header-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    position: relative;
}

/* Active underline */
.header-nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.header-nav ul li a.active::after,
.header-nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
}

/* MOBILE */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0b0b0b;
        display: none;
    }

    .header-nav.open {
        display: block;
    }

    .header-nav ul {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }
}

/* ================= HERO SECTION ================= */

/* Font */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap");

/* Hero wrapper */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Background zoom animation */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    animation: bgZoom 6s ease-in-out infinite;
    z-index: 0;
}

/* Zoom effect */
@keyframes bgZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
}

/* Logo image */
.hero-logo-img {
    max-width: 260px;
    margin-bottom: 100px;
    opacity: 0;
}

/* Main text */
.hero-text {
    font-size: 26px;
    line-height: 1.6;
    letter-spacing: 1px;
    margin-bottom: 40px;
    opacity: 0;
}

/* Button */
.hero-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Fade animation class (used by JS) */
.fade-in {
    animation: fadeUp 1.6s ease forwards;
}

/* Fade up animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-logo-img {
        max-width: 180px;
    }

    .hero-text {
        font-size: 20px;
    }
}

/* ================= OUR STORIES ================= */
/* ================= OUR STORIES ================= */

.stories-section {
    padding: 120px 60px;
    background: #ecc98f;
}

.stories-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 90px;
}

/* Image box */
.stories-image-box {
    width: 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}
.stories-image-box img:hover {
    transform: rotate(0deg); /* rotates back on hover */
}

.rotate-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

/* Images */
.story-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition:
        opacity 1s ease,
        transform 1.5s ease;
}

.story-img.active {
    opacity: 1;
    transform: scale(1);
}

/* Content */
.stories-content {
    max-width: 420px;
}

.stories-subtitle {
    display: block;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 18px;
}

.stories-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.stories-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #333;
}

/* Button */
.stories-btn {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.stories-btn:hover {
    background: #000;
    color: #fff;
}
.scroll-box {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.scroll-box.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .stories-container {
        flex-direction: column;
    }

    .stories-image-box {
        width: 100%;
        height: 320px;
    }

    .stories-content {
        text-align: center;
    }
}
/* ===============================
   OUR STORIES (REDESIGN)
================================ */
.stories-section {
    padding: 140px 60px;
    background: #f3e6cf;
}

.stories-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

/* Image */
.stories-image-wrap {
    position: relative;
    height: 480px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.stories-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease;
}

/* Slow cinematic hover */
.stories-image-wrap:hover .stories-image {
    transform: scale(1.12);
}

/* Content */
.stories-content {
    max-width: 420px;
}

.stories-subtitle {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 18px;
    color: #444;
}

.stories-content h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #111;
}

.stories-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
}

/* Button */
.stories-btn {
    display: inline-block;
    padding: 14px 38px;
    font-size: 12px;
    letter-spacing: 3px;
    text-decoration: none;
    border: 1px solid #111;
    color: #111;
    transition: all 0.4s ease;
}

.stories-btn:hover {
    background: #111;
    color: #fff;
}

/* Scroll animation */
.scroll-box {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.9s ease;
}

.scroll-box.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .stories-section {
        padding: 100px 25px;
    }

    .stories-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stories-image-wrap {
        height: 360px;
    }

    .stories-content {
        text-align: center;
        margin: auto;
    }

    .stories-content h2 {
        font-size: 34px;
    }
}

/* ===============================
   ABOUT SECTION (REDESIGN)
================================ */
.about-section {
    padding: 140px 60px;
    background: #0c0c0c;
    color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

/* Left Content */
.about-subtitle {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 18px;
    color: #bbb;
}

.about-content h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 35px;
}

/* Points */
.about-points {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.about-points li {
    font-size: 15px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 22px;
}

.about-points li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #fff;
}

/* Button */
.about-btn {
    display: inline-block;
    padding: 14px 38px;
    font-size: 12px;
    letter-spacing: 3px;
    text-decoration: none;
    border: 1px solid #fff;
    color: #fff;
    transition: 0.4s ease;
}

.about-btn:hover {
    background: #fff;
    color: #000;
}

/* Video */
.about-media {
    position: relative;
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.about-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scroll Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: 0.9s ease;
}

.scroll-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-section {
        padding: 100px 25px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-media {
        height: 340px;
    }
}

/* ================= PORTFOLIO ================= */
/* ===============================
   PORTFOLIO SECTION
================================ */
.portfolio {
    background: #fff;
    padding: 80px 20px;
    color: #0f0f0f;
}

.portfolio-container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.portfolio-header {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-header h2 {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 1px;
}

.portfolio-header p {
    color: #aaa;
    margin-top: 10px;
    font-size: 15px;
}

/* Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid #444;
    color: #0f0f0f;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #444;
    color: #f3e6cf;
}

/* Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Card */
.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.6s ease;
}

.portfolio-card.show {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay */
.portfolio-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.1)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: 0.4s ease;
}

.portfolio-card:hover img {
    transform: scale(1.12);
}

.portfolio-card:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 22px;
    font-weight: 500;
}

.overlay span {
    font-size: 13px;
    color: #ddd;
}

/* Responsive */
@media (max-width: 600px) {
    .portfolio-header h2 {
        font-size: 32px;
    }
}

/* ================= CONTACT ================= */

.contact-section {
    background: #ffffff;
}

/* ================= FOOTER ================= */

.site-footer {
    background-color: #010101;
    color: #ffffff;
    padding: 60px 24px 20px;
    animation: footerFade 1.2s ease forwards;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 16px;
}

.footer-col h4 {
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ec2227;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #cccccc;
}

/* ================= ANIMATIONS ================= */

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sectionFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes footerFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* ===============================
   CONTACT SECTION (REDESIGN v2)
================================ */
.contact-section {
    background: #f5efe7;
    padding: 140px 60px;
    color: #111;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

/* LEFT DETAILS */
.contact-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    color: #777;
    display: inline-block;
    margin-bottom: 18px;
}

.contact-details h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 22px;
}

.contact-details p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 45px;
}

/*.contact-cards {*/
/*    display: grid;*/
/*    gap: 20px;*/
/*}*/

/*.contact-card {*/
/*    padding: 22px 26px;*/
/*    border-left: 2px solid #111;*/
/*    background: rgba(255, 255, 255, 0.6);*/
/*}*/

/*.contact-card h4 {*/
/*    font-size: 14px;*/
/*    letter-spacing: 2px;*/
/*    margin-bottom: 6px;*/
/*}*/

/*.contact-card span {*/
/*    font-size: 15px;*/
/*    color: #333;*/
/*}*/
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-card .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    font-size: 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.contact-card span {
    font-size: 14px;
    color: #6b7280;
}
/* RIGHT FORM */
.contact-form-box {
    background: #111;
    padding: 55px;
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.input-group {
    position: relative;
    margin-bottom: 34px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 0;
    font-size: 14px;
    color: #fff;
    outline: none;
}

.input-group label {
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #aaa;
    transition: 0.3s ease;
    pointer-events: none;
}

/* Floating label */
.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:valid + label,
.input-group textarea:valid + label {
    top: -14px;
    font-size: 10px;
    color: #fff;
}

/* Button */
.contact-btn {
    width: 100%;
    padding: 16px;
    border-radius: 30px;
    background: #fff;
    color: #111;
    font-size: 12px;
    letter-spacing: 3px;
    border: none;
    cursor: pointer;
    transition: 0.4s ease;
}

.contact-btn:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* Scroll animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.9s ease;
}

.scroll-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-section {
        padding: 100px 25px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .contact-details {
        text-align: center;
    }

    .contact-details h2 {
        font-size: 34px;
    }

    .contact-form-box {
        padding: 40px 30px;
    }
}

/* ===============================
   LUXURIOUS SECTION
================================ */
.luxury-section {
    padding: 120px 40px;
    background: #f7f3ee;
    overflow: hidden;
}

.luxury-header {
    text-align: center;
    margin-bottom: 80px;
}

.luxury-header h2 {
    font-size: 70px;
    letter-spacing: 8px;
    font-weight: 500;
    color: #c28b5c;
}

.luxury-header p {
    font-size: 15px;
    color: #777;
    letter-spacing: 1px;
}

/* Gallery */
.luxury-gallery {
    display: flex;
    gap: 30px;
    height: 600px;
}

/* Columns */
.luxury-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.luxury-column img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
}

/* Scroll Animations */
.scroll-down {
    animation: scrollDown 18s linear infinite;
}

.scroll-up {
    animation: scrollUp 18s linear infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-20%);
    }
    100% {
        transform: translateY(20%);
    }
}

@keyframes scrollUp {
    0% {
        transform: translateY(20%);
    }
    100% {
        transform: translateY(-20%);
    }
}

/* Hover Pause */
.luxury-gallery:hover .luxury-column {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 900px) {
    .luxury-gallery {
        height: auto;
        flex-direction: column;
    }

    .luxury-header h2 {
        font-size: 46px;
    }

    .luxury-column {
        animation: none !important;
    }
}

/* ===============================
   CULTURE SECTION (LUXURY)
================================ */

.culture-section {
    position: relative;
    padding: 140px 0;
    background: #fff;
    overflow: hidden;
}

/* Diagonal Background */
.culture-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #f6f2ee 0%,
        #f6f2ee 55%,
        #ffffff 55%,
        #ffffff 100%
    );
    z-index: 0;
}

.culture-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* LEFT */
.culture-left h2 {
    font-size: 90px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 80px;
    color: #2b2b2b;
}

/* Images */
.culture-image {
    background: #fff;
    padding: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.culture-image img {
    width: 100%;
    display: block;
}

.culture-image.large {
    max-width: 520px;
}

.culture-image.small {
    max-width: 420px;
    margin-bottom: 50px;
}

/* RIGHT */
.culture-right p {
    max-width: 420px;
    font-size: 19px;
    line-height: 1.9;
    color: #333;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .culture-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .culture-left h2 {
        font-size: 64px;
        text-align: center;
    }

    .culture-image.large,
    .culture-image.small {
        margin: auto;
    }

    .culture-right p {
        margin: auto;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .culture-left h2 {
        font-size: 44px;
    }

    .culture-container {
        padding: 0 20px;
    }
}

/* ===============================
   GALLERY
================================ */

.gallery-section {
    padding: 140px 60px;
    background: #f6f2ee;
    font-family: "Playfair Display", serif;
}

.gallery-title {
    text-align: center;
    font-size: 70px;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

/* Grid */
.gallery-grid {
    columns: 3;
    column-gap: 30px;
}

.gallery-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(40px);
    /* opacity: 0; */
    transition: all 0.8s ease;
}

.gallery-item.show {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.overlay span {
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* ===============================
   MODAL
================================ */
/* MODAL BACKDROP */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

/* MODAL BOX */
.modal-box {
    background: #fff;
    max-width: 900px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    animation: zoomIn 0.3s ease;
}

/* IMAGE */
/*.modal-box img {*/
/*    width: 100%;*/
/*    max-height: 65vh;*/
/*    object-fit: cover;*/
/*    display: block;*/
/*}*/
.modal-box img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: #000;
}


/* TEXT */
.modal-text {
    padding: 25px;
    text-align: center;
}

.modal-text h3 {
    font-size: 26px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.modal-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* CLOSE BUTTON */
.close-modal {
    position: absolute;
    top: 12px;
    right: 15px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.close-modal:hover {
    background: #e11d48;
}

/* ANIMATION */
@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .modal-text h3 {
        font-size: 20px;
    }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .gallery-grid {
        columns: 2;
    }

    .gallery-title {
        font-size: 50px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        columns: 1;
    }

    .gallery-section {
        padding: 100px 20px;
    }
}

/* PLAY ICON */
.video-item .overlay i {
    font-size: 40px;
    margin-bottom: 8px;
}

/* BIGGER VIDEO MODAL */
.modal-video {
    max-width: 1000px;
}

/* VIDEO STYLE */
.modal-video video {
    width: 100%;
    height: auto;
    max-height: 65vh;
    background: #000;
}
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: auto; /* important */
}

.gallery-item .overlay {
    pointer-events: none; /* VERY IMPORTANT */
}
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.pagination li a,
.pagination li span {
    padding: 8px 14px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
}

.pagination li.active span {
    background: #000;
    color: #fff;
    border-color: #000;
}

.pagination li a:hover {
    background: #f2f2f2;
}
#successMsg{
    color: red;
}

.social-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column; /* 🔥 vertical */
    gap: 12px;
    z-index: 9999;
}

.social-fixed a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.social-fixed a:hover {
    transform: scale(1.1);
}

.social-fixed .whatsapp {
    background: #25D366;
}

.social-fixed .youtube {
    background: #FF0000;
}

.social-fixed .instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}
.social-fixed .facebook {
    background: #1877F2;
}
.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s, opacity 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

/* Colors */
.footer-social .whatsapp {
    background: #25D366;
}

.footer-social .facebook {
    background: #1877F2;
}

.footer-social .youtube {
    background: #FF0000;
}

.footer-social .instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    /*background: #fff;*/
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 45px;
}

/* Navigation */
.header-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.header-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.header-nav a.active {
    color: #ff0000;
}

/* Header Social */
.header-social {
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: transform 0.3s;
}

.header-social a:hover {
    transform: scale(1.1);
}

.header-social .whatsapp { background: #25D366; }
.header-social .facebook { background: #1877F2; }
.header-social .youtube { background: #FF0000; }
.header-social .instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    text-decoration: none;
}
/* Remove underline / line from all social icons */
.header-social a,
.footer-social a,
.social-fixed a {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: red;
}


/* Responsive */
@media (max-width: 768px) {
    .header-nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        /*background: #fff;*/
        display: none;
        padding: 20px 0;
    }

    .header-nav.open {
        display: block;
    }

    .header-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .header-social {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}