/* nav bar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #DC2626 #333;
}

body {
    margin-top: 80px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #fbfbfc;
    color: #333333;
}


.gallery-hero {
    background-color: #1a222d;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    height: 400px;
    padding: 120px 0 100px 0;

}

.gallery-hero .sub-title {
    color: #f87171;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.gallery-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.gallery-hero p {
    color: #d1d5db;
    font-size: large !important;
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
}

.gallery-section {
    padding: 60px 0;
    background-color: #111827;
}

/* .gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
} */

.gallery-title,
h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 3.2rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 10px !important;
    letter-spacing: -0.5px !important
}

.gallery-subtitle {
    color: #9ca3af;
    font-size: large;
    margin-bottom: 30px;
}

/* new */
.filter-btn {
    border: none;
    background-color: transparent;
    color: #555555;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
    margin-bottom: 2rem;
    cursor: default !important;
}

.filter-btn:hover {
    background-color: #e9ecef;
    color: #374151;
}

.filter-btn.active {
    background-color: #dc2626;
    color: #ffffff;
}

.filter-btn.active:hover {
    background-color: #dc2626;
    color: #ffffff;
}

/* end */

.gallery-item {
    transition: transform 0.4s ease, opacity 0.4s ease;
    padding-left: 2px !important;
    padding-right: 15px !important;
    margin-bottom: 20px;
}

.gallery-item.hide {
    display: none !important;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    height: 320px;
    cursor: pointer;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

/* new */
.img-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.img-wrapper:hover .overlay {
    opacity: 1;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

.zoom-icon {
    align-self: flex-end;
    background: #ffffff;
    color: #111111;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-info {
    text-align: left;
    color: #ffffff;
}

.overlay-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

.overlay-info p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}

/* Lightbox Modal Slider */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    text-align: center;
    max-width: 80%;
    max-height: 80%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 8px;
}

.lightbox-title {
    color: #ffffff;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 24px;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}


.img-wrapper .overlay {
    pointer-events: none !important;
}

.close-btn {
    position: absolute;
    top: 90px;
    right: 40px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}


.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 999999 !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}


/* for instgram */
.instagram-section {
    background-color: #030712;
}

.instagram-username {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #dc2626;
}

.instagram-username i {
    font-size: 2rem;
    -webkit-text-fill-color: transparent;
}

.instagram-desc {
    color: #6c757d;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.instagram-btn {
    background: linear-gradient(90deg, #872ccd 0%, #a20071d7 40%, #e0004d 65%, #ff5100e2 100%);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.instagram-btn:hover {
    opacity: 0.92;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(42, 39, 41, 0.35);
    transform: translateY(-2px);
}

/* end */

.main-footer {
    background-color: #111827;
    color: #a0a0a5;
    font-size: 0.9rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.footer-brand .brand-title {
    font-family: "Knewave", system-ui;
    font-size: 1.6rem;
    font-style: italic;
    color: #ffffff;
}

.footer-brand .brand-icon {
    color: #d9383a;
    font-size: 1.1rem;
}
.footer-brand  img{
    width: 46px;
    height: 46px;

}

.footer-brand .brand-line {
    display: inline-block;
    width: 15px;
    height: 1px;
    background-color: #d9383a;
}

.main-footer .subtitle {
    color: #8c8c91;
    font-size: 0.88rem;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #a0a0a5;
}

.contact-info .contact-item i {
    color: #d9383a;
    margin-top: 3px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #38383c;
    color: #a0a0a5;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #d9383a;
    color: #ffffff;
}

.section-heading {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0a0a5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    color: #a0a0a5;
    font-size: 0.85rem;
}

.hours-row .closed {
    color: #d9383a;
}

.newsletter-text {
    color: #a0a0a5;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.newsletter-form .input-group {
    background-color: #38383c;
    padding: 3px;
    border-radius: 6px;
}

.newsletter-form .form-control {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.88rem;
    padding-left: 12px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background-color: transparent;
    color: #ffffff;
}

.newsletter-form .form-control::placeholder {
    color: #6c6c72;
}

.newsletter-form .btn-subscribe {
    background-color: #d9383a;
    color: #ffffff;
    border-radius: 6px !important;
    font-weight: 500;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.newsletter-form .btn-subscribe:hover {
    background-color: #b82b2d;
    color: #ffffff;
}

.footer-divider {
    border: none;
    border-top: 1px solid #3d3d42;
    margin-top: 40px;
    margin-bottom: 0;
    width: 100%;
    opacity: 1;
}

.copyright-section {
    color: #727277;
    font-size: 0.8rem;
}

.legal-links {
    display: flex;
    gap: 15px;
}

.legal-links a {
    color: #727277;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #a0a0a5;
}

.newsletter-form .input-group {
    background-color: #38383c;
    padding: 3px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.newsletter-form .input-group:has(.form-control:focus) {
    border-color: #d9383a;
    box-shadow: 0 0 0 2px rgba(217, 56, 58, 0.2);
}

.newsletter-form .form-control {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.88rem;
    padding-left: 12px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background-color: transparent;
    background-color: bisque;
    color: black;
}

.newsletter-form .form-control::placeholder {
    color: #6c6c72;
}

