:root {
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --bg-color: #000000;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --border-color: #222222;
    --footer-border: #1a2a40; 
}

#gallery-modal{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.85);z-index:2000;padding:20px}
#gallery-modal[aria-hidden="true"]{display:none}
#gallery-modal img{max-width:90%;max-height:90%;box-shadow:0 10px 30px rgba(0,0,0,.5);border-radius:4px;cursor:pointer}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    width: 100%;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Override Bootstrap's .container max-width to match original design */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

.btn-primary {
    background: var(--primary) !important;
    color: white !important;
    border: 1px solid var(--primary) !important;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

/* Shared nav-arrow styles */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-arrow {
    left: 32px;
}

.right-arrow {
    right: 32px;
}

.nav-arrow:hover {
    color: var(--primary);
}

/* Extra-small phones */
@media (max-width: 575.98px) {
    .container {
        padding: 0 16px;
    }
}

/* Utility to color SVG img tags on hover */
.hover-primary-icon {
    transition: opacity 0.3s ease;
    cursor: pointer;
}

a:hover > .hover-primary-icon,
button:hover > .hover-primary-icon,
.btn:hover > .hover-primary-icon,
.nav-arrow:hover > .hover-primary-icon,
.search-btn:hover > .hover-primary-icon,
.social-icons a:hover > .hover-primary-icon,
.offcanvas-social-icons a:hover > .hover-primary-icon {
    opacity: 0.6;
}

/* =======================================
   NAVBAR STYLES
   ======================================= */
.navbar-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
}

.navbar-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: radial-gradient(ellipse at center, #3B82F685 0%, transparent 70%);
    z-index: 1;
}

.navbar-header .navbar {
    padding: 18px 0 24px;
    background: transparent !important;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .navbar-header .nav-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    
    .navbar-header .offcanvas {
        display: contents !important;
    }

    .navbar-header .offcanvas-header {
        display: none !important;
    }

    .navbar-header .offcanvas-body {
        display: contents !important;
    }

    .navbar-header .offcanvas-bottom {
        display: none !important;
    }

    .navbar-header .nav-links {
        display: flex !important;
        gap: 32px;
        justify-content: center;
        align-items: center;
        transform: translateY(6px);
        flex-direction: row;
    }

    .navbar-header .nav-action {
        display: flex;
        justify-content: flex-end;
    }

    /* Desktop dropdown positioning */
    .navbar-header .nav-item-dropdown {
        position: relative;
    }

    /* Invisible bridge so the dropdown doesn't close when moving the
       mouse from the nav-link down to the dropdown panel below it */
    .navbar-header .nav-item-dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 20px;
        background: transparent;
        display: none;
        z-index: 999;
    }

    .navbar-header .nav-item-dropdown:hover::after {
        display: block;
    }

    /* Hidden by default, revealed on hover */
    .navbar-header .nav-item-dropdown:hover .nav-dropdown {
        visibility: visible;
    }

    .navbar-header .nav-dropdown {
        position: absolute;
        top: calc(100% + 14px);
        left: 50%;
        transform: translateX(-50%);
        min-width: 200px;
        display: flex;
        flex-direction: column;
        z-index: 1000;
        background: #000000;
        border: 1.5px solid var(--primary);
        border-radius: 10px;
        overflow: hidden;
        visibility: hidden;
    }

    .navbar-header .dropdown-item-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 12px 20px;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        background: transparent;
        transition: background 0.25s ease;
        white-space: nowrap;
        text-decoration: none;
    }

    .navbar-header .dropdown-item-link + .dropdown-item-link {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-header .dropdown-item-link:hover {
        background: rgba(255, 255, 255, 0.07);
    }

    .navbar-header .dropdown-item-link img {
        opacity: 0.7;
        flex-shrink: 0;
    }

    .navbar-header .chevron-open {
        transform: rotate(180deg);
    }

    .navbar-header .nav-chevron {
        transition: transform 0.25s ease;
    }
}

.navbar-header .navbar-brand {
    transform: translateY(6px);
    padding: 0;
    margin: 0;
}

.navbar-header .navbar-brand img,
.logo img {
    height: 42px;
    object-fit: contain;
}

.navbar-header .nav-links .nav-link {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-main) !important;
    padding: 0;
}

.navbar-header .nav-links .nav-link:hover,
.navbar-header .nav-links .nav-link.active {
    color: var(--text-main) !important;
    opacity: 0.8;
}

.nav-location-icon {
    height: 16px;
    vertical-align: -3px;
    margin: 0 1px;
}

.has-dropdown {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
}

.nav-chevron {
    opacity: 0.7;
}

.nav-action {
    display: flex;
    justify-content: flex-end;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 42px;
    padding-left: 16px;
    text-align: center;
    padding-right: 22px;
    font-size: 16px;
    font-weight: 600;
}

.btn-location-icon {
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mobile-nav-cta {
    display: none;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3) !important;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(59, 130, 246, 0.5) !important;
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 4px 0;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-toggler {
        padding: 4px 8px;
    }

    .navbar-header .navbar {
        padding: 12px 0 12px;
    }

    .navbar-header .nav-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .navbar-header .navbar-brand {
        transform: none;
        margin-right: auto;
    }

    .navbar-header .navbar-brand img {
        height: 24px;
    }

    .mobile-nav-cta {
        display: inline-flex !important;
        order: 2;
        height: 36px;
        padding: 0 24px;
        font-size: 13px;
        font-weight: 600;
        margin-right: 12px;
        white-space: nowrap;
        align-items: center;
    }

    .navbar-toggler {
        order: 3;
    }

    .navbar-header .offcanvas {
        background: #0a0a0a !important;
        border-left: none !important;
        box-shadow: none;
        width: 80% !important;
        max-width: 320px;
    }

    .navbar-header .offcanvas-header {
        padding: 20px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-header .offcanvas-header .btn-close {
        opacity: 1;
        filter: brightness(0) invert(1);
    }

    .navbar-header .offcanvas-brand img {
        height: 32px;
        object-fit: contain;
    }

    .navbar-header .offcanvas-body {
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .navbar-header .nav-links {
        gap: 0;
        text-align: left;
        flex-direction: column;
    }

    .navbar-header .nav-links .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-header .nav-links .nav-item:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-header .nav-links .nav-link {
        padding: 16px 24px !important;
        font-size: 15px;
        font-weight: 600;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-header .nav-links .nav-chevron {
        display: none;
    }

    /* Show chevron instead of › for dropdown items */
    .navbar-header .nav-links .has-dropdown .nav-chevron {
        display: inline-block;
        margin-left: auto;
    }

    .navbar-header .nav-links .has-dropdown::after {
        display: none;
    }

    .navbar-header .nav-links .nav-link::after {
        content: '›';
        font-size: 28px;
        font-weight: 300;
        color: #ffffff;
        margin-left: auto;
        line-height: 1;
    }

    /* Mobile submenu */
    .navbar-header .nav-dropdown {
        position: static;
        transform: none;
        min-width: 0;
        border: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.04);
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .navbar-header .nav-dropdown .dropdown-item-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 24px 14px 40px;
        border: none;
        border-radius: 0;
        background: transparent;
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        text-decoration: none;
    }

    .navbar-header .nav-dropdown .dropdown-item-link + .dropdown-item-link {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-header .nav-dropdown .dropdown-item-link:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .navbar-header .nav-dropdown .dropdown-item-link img {
        opacity: 0.8;
    }

    .offcanvas-cta {
        padding: 24px;
    }

    .offcanvas-cta .nav-btn {
        width: 100%;
        justify-content: center;
        border-radius: 6px;
        height: 48px;
        font-size: 14px;
    }

    .offcanvas-bottom {
        margin-top: auto;
        padding: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .offcanvas-bottom span {
        font-size: 13px;
        color: var(--text-muted);
    }

    .offcanvas-social-icons {
        display: flex;
        gap: 16px;
    }

    .offcanvas-social-icons a {
        color: #fff;
        display: flex;
        align-items: center;
        transition: color 0.3s;
    }

    .offcanvas-social-icons a:hover {
        color: var(--primary);
    }
}

/* =======================================
   HERO SECTION STYLES
   ======================================= */
.hero-wrapper {
    position: relative;
    display: grid;
    width: 100%;
}

.hero-slide {
    grid-area: 1 / 1;
    position: relative;
    padding-top: 170px;
    padding-bottom: 70px;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Circle-shaped blue glows centered at left and right edges */
        radial-gradient(circle 290px at left center, rgba(59, 130, 246, 0.45) 0%, transparent 100%),
        radial-gradient(circle 290px at right center, rgba(59, 130, 246, 0.45) 0%, transparent 100%),
        /* Left-to-right dark gradient to increase text legibility */
        linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.75) 25%, rgba(0,0,0,0) 50%),
        /* Top and bottom vignettes */
        linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 25%),
        linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 20%, rgba(0,0,0,0) 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-welcome {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 4px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #fff;
}



.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
}

/* desktop: position hero arrows outside the container */
@media (min-width: 992px) {
    .hero-wrapper > .left-arrow {
        left: max(16px, calc(50% - 720px - 48px));
    }

    .hero-wrapper > .right-arrow {
        right: max(16px, calc(50% - 720px - 48px));
    }
}

.hero-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    padding: 0 24px;
    z-index: 2;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.diamond-dot {
    width: 10px;
    height: 10px;
    background-color: #9c9c9c;
    transform: rotate(45deg);
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.diamond-dot.active {
    background-color: #7AAFFF;
}

/* =======================================
   NEWS SECTION STYLES
   ======================================= */
.news-section {
    position: relative;
    padding: 40px 0 70px;
    background: #000000;
    overflow: hidden;
}

.news-section::before,
.news-section::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.news-section::before {
    left: 0;
    background: radial-gradient(ellipse at left center, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.news-section::after {
    right: 0;
    background: radial-gradient(ellipse at right center, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.news-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    letter-spacing: 1px;
    position: relative;
    white-space: nowrap;
    text-transform: uppercase;
}

.section-title::before,
.section-title::after {
    content: "";
    flex: 0 0 45vw;
    height: 3px;
    background: radial-gradient(ellipse at center, #3B82F685 0%, transparent 70%);
}

.experience-card {
    position: relative;
    height: 280px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
    background: #000;
}

.experience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 1);
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.experience-card:hover .experience-bg {
    transform: scale(1.05);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at bottom left, #2B80FF65 0%, transparent 30%),
        radial-gradient(circle at top right, #2B80FF65 0%, transparent 30%),
        linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 50%),
        linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 70%);
    z-index: 2;
}

.experience-content {
    position: relative;
    z-index: 3;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.experience-content.stacked {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.experience-text h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.experience-text p {
    font-size: 18px;
    color: #fff;
    margin: 0;
}

.experience-arrow {
    color: #fff;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
}

.experience-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border: 1px solid white;
    background: transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.experience-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

@media (max-width: 991.98px) {
    .hero-welcome {
        font-size: 48px;
    }
    
    .hero-title {
        font-size: 48px;
    }

    .hero-slide {
        padding-top: 130px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-overlay {
        background: 
            /* Circle-shaped blue glows centered at left and right edges (smaller on mobile) */
            radial-gradient(circle 150px at left center, rgba(59, 130, 246, 0.45) 0%, transparent 100%),
            radial-gradient(circle 150px at right center, rgba(59, 130, 246, 0.45) 0%, transparent 100%),
            /* Left-to-right dark gradient to increase text legibility */
            linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.75) 25%, rgba(0,0,0,0) 50%),
            /* Top and bottom vignettes */
            linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 25%),
            linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 20%, rgba(0,0,0,0) 50%);
    }

    .news-section {
        padding: 0px 0 35px;
    }

    .news-section::before,
    .news-section::after {
        width: 150px;
        height: 400px;
    }

    .experience-card {
        height: 220px;
    }

    .hero-welcome {
        font-size: 36px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: flex-start;
    }

    .hero-btn {
        width: 70%;
    }

    .hero-pagination {
        bottom: 20px;
        justify-content: center;
    }

    .hero-wrapper > .nav-arrow {
        top: auto;
        bottom: 14px;
        transform: none;
    }

    .hero-wrapper > .nav-arrow img {
        width: 20px;
        height: 32px;
    }

    .hero-wrapper > .left-arrow {
        left: 12px;
    }

    .hero-wrapper > .right-arrow {
        right: 12px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .section-title::before,
    .section-title::after {
        flex: 0 0 20vw;
    }
}

@media (max-width: 575.98px) {
    .hero-welcome {
        font-size: 32px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .experience-text h3 {
        font-size: 22px;
    }
}

/* =======================================
   FOOTER SECTION STYLES
   ======================================= */
.diamond {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    transform: rotate(45deg);
    display: inline-block;
}

.footer {
    position: relative;
    padding-top: 20px;
    background: #000000;
}

.glow-line-horizontal {
    height: 1px;
    width: 100%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
}

.footer-top {
    padding: 60px 0;
}

.footer-left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 24px;
}

.footer-buttons {
    display: flex;
    gap: 16px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
}

.footer-middle-col {
    position: relative;
}

.footer-middle-col::before,
.footer-middle-col::after {
    content: "";
    position: absolute;
    top: -20px;
    bottom: -20px;
    width: 1px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
}

.footer-middle-col::before {
    left: 0;
}

.footer-middle-col::after {
    right: 0;
}

.center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-subtitle {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #aaa;
    margin-bottom: 24px;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-other-restaurants {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px; /* Spacing above/below lines */
}

.footer-restoran-logo {
    display: block;
    max-height: 45px; /* Adjust height to prevent huge overlapping logos */
    width: auto;
}

/* Adds separator line and spacing to all items EXCEPT the last one */
.footer-other-restaurant-link:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Adjust line color/opacity */
    padding-bottom: 16px;
    width: 60%; /* Controls the width of the separator line */
    display: flex;
    justify-content: center;
}

.footer-social-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icons img {
    width: 32px;
    height: 32px;
}

.footer-bottom {
    padding: 24px 0;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.bottom-links {
    display: flex;
    gap: 24px;
}

.bottom-links a {
    color: #888;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.bottom-links a:hover {
    color: #fff;
}

@media (max-width: 991.98px) {
    .footer-middle-col::before,
    .footer-middle-col::after {
        display: none;
    }
    
    .footer-top {
        gap: 40px;
    }
    
    .footer-left-col,
    .footer-middle-col,
    .footer-right-col {
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-right-col {
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding-top: 40px;
    }
    
    .footer-top {
        padding: 40px 0;
    }

    .footer-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: center;
    }

    .footer-btn {
        width: 70%;
    }

    .bottom-container {
        flex-direction: column;
    }
    
    .bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .footer-left-col::after,
    .footer-middle-col::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 1px;
        background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
        display: block;
    }
}

.signature-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.signature-btn-outline {
    border-radius: 6px;
    padding: 10px 28px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #3B82F6;
    color: #fff;
    border: 2px solid #3B82F6;
    transition: all 0.3s;
}

.signature-btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* =======================================
   CONTACT SECTION STYLES
   ======================================= */
.contact-section {
    position: relative;
    padding: 0 0 80px;
    background: #000;
    overflow-x: hidden;
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 0 0 0px;
    }
}

.contact-row {
    margin-top: 40px;
    gap: 40px 0;
}

.contact-logo {
    height: 44px;
    margin-bottom: 16px;
    width: auto;
}

.contact-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: #fff;
}

.contact-info-list li img {
    width: 20px;
    height: 20px;
}

.contact-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    width: fit-content;
}

.contact-btn img {
    width: 16px;
    height: 16px;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.contact-map-col {
    display: flex;
    justify-content: flex-end;
}

.map-wrapper {
    width: 100%;
    min-height: 350px;
    height: 100%;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.8);
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .map-wrapper {
        min-height: 300px;
    }
    .map-wrapper iframe {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .contact-row {
        margin-top: 30px;
        gap: 30px 0;
    }

    .contact-info-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-logo {
        height: 36px;
        margin-bottom: 12px;
    }

    .contact-subtitle {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .contact-info-list {
        align-items: flex-start;
        width: 100%;
        max-width: 280px;
        margin-bottom: 30px;
    }

    .contact-info-list li {
        font-size: 15px;
        gap: 12px;
        text-align: left;
    }

    .contact-btn {
        width: 100%;
        padding: 12px 16px;
        justify-content: center;
    }
    
    .map-wrapper {
        min-height: 250px;
    }
    .map-wrapper iframe {
        min-height: 250px;
    }
}


@media (max-width: 767.98px) {
.signature-btn-primary,
    .signature-btn-outline {
        font-size: 14px;
        padding: 14px 6px;
        flex: 1;
    }
    
    .signature-buttons .showcase-btn {
        flex: 1;
        padding: 12px 4px !important;
        font-size: 12px !important;
    }
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background: transparent;
    font-weight: 600;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}
/* =======================================
   KONTAKT PAGE STYLES
   ======================================= */


.kontakt-hero-wrapper .hero-slide {
    padding-top: 130px;
}

.kontakt-hero-wrapper .hero-content {
    align-items: flex-start;
    padding-top: 0px;
}

.kontakt-hero-wrapper .hero-content .row {
    width: 100%;
}

.kontakt-container {
    position: relative;
    z-index: 3;
}

/* Left Column Styling */
.back-link {
    display: inline-block;
    color: #3B82F6;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 60px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}

.back-link:hover {
    color: #fff;
}

.kontakt-info-col img.kontakt-page-logo {
    height: 45px;
    margin-bottom: 24px;
}

.kontakt-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.2;
}

.kontakt-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kontakt-info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff;
}

.kontakt-info-list li img {
    width: 20px;
    height: 20px;
    margin-right: 16px;
    filter: brightness(0) invert(1);
}

.kontakt-info-list li.email-row img {
    filter: invert(36%) sepia(85%) saturate(2329%) hue-rotate(207deg) brightness(99%) contrast(97%); /* Blue #3B82F6 equivalent */
}

.kontakt-info-list li a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.kontakt-info-list li a:hover {
    color: #3B82F6;
}

/* Right Column Form Styling */
.kontakt-form-card {
    background: #050505;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.2), 0 10px 40px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

.kontakt-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.kontakt-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.kontakt-form-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background: radial-gradient(ellipse at center, #3B82F6 0%, transparent 70%);
    margin: 16px auto 0;
}

.kontakt-form-group {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.kontakt-form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.kontakt-form-control {
    width: 100%;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 14px 16px;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.3s;
}

.kontakt-form-control:focus {
    outline: none;
    border-color: #3B82F6;
    background: #1a1a1a;
}

.kontakt-form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.kontakt-captcha-row {
    display: flex;
    gap: 16px;
}

.kontakt-captcha-col {
    flex: 1;
}



textarea.kontakt-form-control {
    resize: vertical;
    min-height: 140px;
}

.kontakt-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .kontakt-hero-wrapper .hero-slide {
        padding-top: 100px;
    }

    .kontakt-hero-wrapper .container.hero-content {
        display: block;
        padding: 0 16px;
    }

    .kontakt-hero-wrapper .hero-content > .row {
        margin-left: 0;
        margin-right: 0;
    }

    .kontakt-hero-wrapper .hero-content > .row > div {
        padding-left: 0;
        padding-right: 0;
    }

    .kontakt-page-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .kontakt-info-col {
        margin-bottom: 24px;
    }
    
    img.kontakt-page-logo {
        align-self: center;
        margin-bottom: 30px;
    }

    .back-link {
        margin-bottom: 30px;
    }

    .kontakt-form-card {
        padding: 30px 20px;
        border-radius: 8px;
    }

    .kontakt-captcha-row {
        flex-direction: column;
        gap: 24px;
    }
}
/* =======================================
   ORGANIZACIJA PRIVATNIH PROSLAVA STYLES
   ======================================= */

.hero-title-separator {
    height: 3px;
    background: radial-gradient(ellipse at center, #3B82F685 0%, transparent 70%);
    width: 60%;
    margin: 8px auto;
}

.organizacija-hero-title span {
    display: block;
}

.organizacija-text-section {
    padding: 0 0 40px;
    background: #000;
}

.organizacija-text-content {
    color: #fff;
}

.organizacija-text-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    margin-top: 40px;
}

.organizacija-text-content h2:first-child {
    margin-top: 0;
}

.organizacija-text-content p {
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
}

.organizacija-list {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 32px;
}

.organizacija-list li {
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* =======================================
   GALLERY SECTION STYLES
   ======================================= */
.gallery-section {
    position: relative;
    padding: 40px 0 80px;
    background: #000;
    overflow: hidden;
}

.gallery-section::before,
.gallery-section::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gallery-section::before {
    left: 0;
    background: radial-gradient(ellipse at left center, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.gallery-section::after {
    right: 0;
    background: radial-gradient(ellipse at right center, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.gallery-container {
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.5);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    background: #000;
    transition: transform 0.3s, border-color 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    border-color: #3B82F6;
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    .organizacija-text-section {
        padding: 0 0 20px;
    }
    .organizacija-text-content h2 {
        font-size: 28px;
        margin-bottom: 16px;
        margin-top: 32px;
    }
    .organizacija-text-content p, .organizacija-list li {
        font-size: 16px;
    }
    .hero-title-separator {
        width: 80%;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .signature-btn-primary {
        margin-top: 0px !important;
    }
}

@media (max-width: 767.98px) {
    .gallery-section {
        padding: 25px 0 50px;
    }

    .gallery-section::before,
    .gallery-section::after {
        width: 150px;
        height: 400px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
    }
    
    .gallery-item {
        aspect-ratio: 1 / 1;
        border-radius: 8px;
    }
}
/* =======================================
   NEWS SECTION OVERRIDES
   ======================================= */
.news-section::before,
.news-section::after {
    display: none !important;
}

/* =======================================
   SHOWCASE SECTION STYLES
   ======================================= */


.showcase-section {
    position: relative;
    padding: 40px 0 0px;
    background: #000;
    overflow: hidden;
}

.showcase-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: url("./assets/landing/showcase-bg.jpg") center / cover no-repeat;
    opacity: 0.15;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 60%, transparent 100%);
}

.showcase-section::before,
.showcase-section::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.showcase-section::before {
    left: 0;
    background: radial-gradient(ellipse at left center, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.showcase-section::after {
    right: 0;
    background: radial-gradient(ellipse at right center, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.showcase-container {
    position: relative;
    z-index: 3;
    max-width: 1300px !important;
}

.showcase-title {
    margin-bottom: 25px;
}

.showcase-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.showcase-row:last-child {
    margin-bottom: 0;
}

.showcase-col {
    flex: 1;
}

.showcase-image-col img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.5);
}

.showcase-text-col h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.showcase-text-col p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.showcase-btn {
    border: 2px solid white;
    border-radius: 6px;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.showcase-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 991.98px) {
    .showcase-section {
        padding: 50px 0;
    }
    
    .showcase-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .showcase-image-col {
        order: 1;
        width: 100%;
    }
    
    .showcase-text-col {
        order: 2;
        width: 100%;
    }

    .showcase-image-col img {
        height: 240px;
    }

    .showcase-text-col h2 {
        font-size: 26px;
    }
}

@media (max-width: 767.98px) {
    .showcase-section {
        padding: 25px 0;
    }

    .showcase-btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    .showcase-section::before,
    .showcase-section::after {
        width: 150px;
        height: 400px;
    }
}

@media (max-width: 575.98px) {
    .showcase-text-col h2 {
        font-size: 22px;
    }
}

/* =======================================
   SIGNATURE SECTION STYLES
   ======================================= */
.signature-section {
    position: relative;
    padding: 80px 0 20px;
    background: #000;
    overflow: hidden;
}

.signature-section::before,
.signature-section::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.signature-section::before {
    left: 0;
    background: radial-gradient(ellipse at left center, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.signature-section::after {
    right: 0;
    background: radial-gradient(ellipse at right center, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.signature-container {
    position: relative;
    z-index: 2;
}

.signature-carousel-wrapper {
    position: relative;
    margin: 40px -60px 50px;
    padding: 0 60px;
    display: flex;
    align-items: center;
}

.signature-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.signature-carousel::-webkit-scrollbar {
    display: none;
}

.signature-card {
    flex: 0 0 calc(33.333% - 16px);
    position: relative;
    height: 280px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.5);
    overflow: hidden;
    scroll-snap-align: center;
    background: #000;
}

.signature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.signature-card:hover .signature-bg {
    transform: scale(1.05);
}

.signature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%);
    z-index: 2;
}

.signature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 3;
}

.signature-content p {
    margin: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}


.signature-arrow.left-arrow {
    left: 0;
}

.signature-arrow.right-arrow {
    right: 0;
}

@media (max-width: 991.98px) {
    .signature-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 767.98px) {
    .signature-section {
        padding: 25px 0 25px;
    }

    .signature-section::before,
    .signature-section::after {
        width: 150px;
        height: 400px;
    }

    .signature-carousel-wrapper {
        padding: 0;
        margin: 30px 0 40px;
    }

    .signature-card {
        flex: 0 0 85%;
        height: 240px;
    }
}

/* =======================================
   GALLERY SECTION STYLES
   ======================================= */
.gallery-section {
    position: relative;
    padding: 80px 0 80px;
    background: #000;
    overflow: hidden;
}

.gallery-section::before,
.gallery-section::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gallery-section::before {
    left: 0;
    background: radial-gradient(ellipse at left center, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.gallery-section::after {
    right: 0;
    background: radial-gradient(ellipse at right center, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.gallery-container {
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.5);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    background: #000;
    transition: transform 0.3s, border-color 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    border-color: #3B82F6;
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .gallery-section {
        padding: 25px 0 50px;
    }

    .gallery-section::before,
    .gallery-section::after {
        width: 150px;
        height: 400px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
    }
    
    .gallery-item {
        aspect-ratio: 1 / 1;
        border-radius: 8px;
    }
}
/* =======================================
   PROMOCIJA PAGE STYLES
   ======================================= */
.hero-wrapper .hero-slide {
    padding-top: 110px;
}

.back-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.back-link:hover {
    color: var(--primary-dark);
}

.promocija-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.label-separator {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.3);
}

.promocija-label img {
    height: 24px;
    object-fit: contain;
}

.promocija-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 0;
}

.promocija-body-section {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 5;
    background: transparent;
}

.promocija-body-text {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

.promocija-body-text p {
    margin-bottom: 30px;
}

.promocija-body-text p:last-child {
    margin-bottom: 0;
}

/* DRUGE PROMOCIJE */
.druge-promocije-section {
    padding: 80px 0;
    background: #000;
    overflow-x: hidden;
}

.druge-promocije-grid {
    margin-top: -30px;
}

.druge-promocije-card {
    display: flex;
    flex-direction: column;
}

.druge-promocije-img-wrap {
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 16/9;
}

.druge-promocije-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.druge-promocije-card:hover .druge-promocije-img-wrap img {
    transform: scale(1.05);
}

.druge-promocije-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
}

.druge-promocije-desc {
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 24px;
}

.druge-promocije-btn {
    align-self: flex-start;
    padding: 10px 24px;
    font-size: 14px;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .hero-wrapper .hero-slide {
        padding-top: 90px;
        height: 400px;
    }
    
    .hero-content {
        align-items: stretch !important;
    }
    
    .mobile-hero-flex, .mobile-hero-col {
        height: 100%;
    }
    
    .mobile-hero-col {
        justify-content: space-between;
        padding-bottom: 0;
    }
    
    .back-link {
        margin-bottom: 0;
    }
    
    .promocija-label {
        margin-bottom: 0;
    }

    .promocija-body-section {
        margin-top: 0;
        padding: 0;
    }
    
    .druge-promocije-section {
        padding: 60px 0;
    }
    
    .druge-promocije-grid {
        margin-top: -20px;
    }
    
    .druge-promocije-card {
        margin-bottom: 40px;
    }
    
    .druge-promocije-card:last-child {
        margin-bottom: 0;
    }
}
/* =======================================
   PROMOCIJE SECTION STYLES
   ======================================= */
.promocije-section {
    padding: 40px 0;
}

.promocije-container {
    max-width: 1100px;
}

.promocije-card {
    margin-bottom: 50px;
}

.promocije-card:last-child {
    margin-bottom: 0;
}

.promocije-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.promocije-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promocije-logo-overlay {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 2;
}

.promocije-logo-overlay img {
    height: 24px;
    object-fit: contain;
}

.promocije-text-col {
    padding-left: 30px;
}

.promocije-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
}

.promocije-desc {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.promocije-btn {
    padding: 12px 32px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .promocije-section {
        padding: 0 0 40px;
    }
    
    .promocije-container {
        padding: 0 16px;
    }
    
    .promocije-image-wrapper {
        aspect-ratio: 4/3;
    }
    
    .promocije-card {
        margin-bottom: 40px;
    }
    
    .promocije-text-col {
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-top: 24px;
    }
    
    .promocije-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .promocije-desc {
        font-size: 16px;
        margin-bottom: 24px;
    }
}
/* =======================================
   SEARCH SECTION STYLES
   ======================================= */
.search-section {
    position: relative;
    padding: 40px 0 40px;
    background: url('./assets/landing/bar-image.png') center 110% / cover no-repeat;
    overflow: hidden;
}

.search-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, #000000 0%, transparent 30%),
        linear-gradient(to top, #000000 0%, transparent 30%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1;
}

.search-header, .search-carousel-wrapper {
    position: relative;
    z-index: 2;
}

.search-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 36px;
}

.search-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}

.search-location-icon {
    height: 64px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-box input {
    width: 100%;
    padding: 20px 32px;
    padding-right: 50px;
    background: #78AEFF70;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    font-family: inherit;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    background: #333;
    box-shadow: 0 0 0 1px #3B82F6;
}

.search-box input::placeholder {
    color: white;
}

.search-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.search-btn:hover {
    color: #3B82F6;
}

.search-carousel-wrapper {
    position: relative;
    width: 100%;
}

@media (min-width: 992px) {
    .search-carousel-wrapper > .left-arrow {
        left: max(16px, calc(50% - 720px - 48px));
    }

    .search-carousel-wrapper > .right-arrow {
        right: max(16px, calc(50% - 720px - 48px));
    }
}

.search-carousel-wrapper::before,
.search-carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: max(180px, calc((100vw - 1440px) / 2 + 80px));
    z-index: 3;
    pointer-events: none;
}

.search-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.search-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
    width: max(260px, calc((100vw - 1440px) / 2 + 140px));
}

.locations-carousel {
    display: flex;
    gap: 20px;
    padding-left: calc(max(0px, (100vw - 1440px) / 2) + 16px);
    padding-right: calc(max(0px, (100vw - 1440px) / 2) + 16px);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.locations-carousel::-webkit-scrollbar {
    display: none;
}

.location-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    border: 1px solid #2B80FF90;
    border-radius: 12px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.locations-carousel .location-card {
    flex: 0 0 320px;
}

.location-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(160px 60px at bottom left, #2B80FF75, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.location-info, .location-arrow {
    position: relative;
    z-index: 2;
}

.location-card:hover {
    border-color: #3B82F6;
}

.location-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    color: white;
}

.location-info p {
    font-size: 14px;
    color: white;
    margin: 0;
}

@media (max-width: 767.98px) {
    .search-title {
        font-size: 30px;
        text-align: center;
        font-weight: 600;
    }

    .search-box input {
        padding: 16px 24px;
        padding-right: 46px;
        font-size: 14px;
    }

    .locations-carousel .location-card {
        flex: 0 0 260px;
    }

    .locations-carousel {
        padding-left: 16px;
        padding-right: 16px;
    }

    .search-carousel-wrapper::before,
    .search-carousel-wrapper::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .search-location-icon {
        height: 48px;
    }
}

/* =======================================
   FEATURE SECTION STYLES
   ======================================= */
.feature-section {
    position: relative;
    padding: 40px 0 100px;
    background: #000;
    overflow: hidden;
}

.feature-section::before,
.feature-section::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.feature-section::before {
    left: 0;
    background: radial-gradient(ellipse at left center, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.feature-section::after {
    right: 0;
    background: radial-gradient(ellipse at right center, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.feature-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.feature-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.5);
    overflow: hidden;
}

.feature-image-wrapper img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.feature-btn {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: transparent;
    border: 2px solid white;
    color: #fff;
    padding: 8px 65px;
    padding-left: 75px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.feature-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

@media (max-width: 767.98px) {
    .feature-section {
        padding: 24px 0 60px;
    }

    .feature-image-wrapper img {
        height: 220px;
    }

    .feature-btn {
        bottom: 16px;
        right: 16px;
        font-size: 12px;
        padding-right: 12px;
        padding-left: 20px;
    }
}

/* =======================================
   WELCOME PAGE STYLES
   ======================================= */
.welcome-page {
    background: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.welcome-global-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.welcome-global-bg img {
    width: 1680px;
    height: auto;
    flex-shrink: 0;
    transform: translateY(-100px);
    filter: brightness(0.8);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 150px, #000 calc(100% - 150px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 150px, #000 calc(100% - 150px), transparent 100%);
}

.welcome-global-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 90%),
        linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 15%, rgba(0,0,0,0) 35%);
    z-index: 1;
    pointer-events: none;
}

.welcome-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.25) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.welcome-glow-left {
    top: 50%;
    left: -20vw;
    transform: translateY(-70%);
}

.welcome-glow-right {
    top: 50%;
    right: -20vw;
    transform: translateY(-70%);
}

.welcome-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    position: relative;
    z-index: 1;
}

.welcome-header {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 24px;
    width: 100%;
}

.welcome-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: radial-gradient(ellipse at center, #3B82F685 0%, transparent 70%);
}

.welcome-logo {
    height: 50px;
    width: auto;
}

.welcome-text-content {
    text-align: center;
    max-width: 800px;
    margin-bottom: 60px;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 24px;
}

.welcome-badge img {
    width: 26px;
    height: 26px;
}

.welcome-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.welcome-subtitle {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    line-height: 1.6;
}

.welcome-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 80px;
}

.welcome-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 380px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(59, 130, 246, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.welcome-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.9);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    color: #fff;
}

.welcome-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.welcome-card:hover .welcome-card-bg {
    transform: scale(1.05);
}

.welcome-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 100%, rgba(59, 130, 246, 0.35) 0%, transparent 45%),
        linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.55) 100%);
    z-index: 2;
}

.welcome-card-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.welcome-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.welcome-card-logo {
    height: 60px;
    margin-bottom: 8px;
    width: auto;
    object-fit: contain;
}

.welcome-card-desc {
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
    color: #fff;
}

.welcome-card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
}

.welcome-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.welcome-btn img {
    width: 14px;
    height: 14px;
}

.welcome-card-location {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 11px;
    color: var(--text-muted);
}

.welcome-card-location .loc-value {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.welcome-footer {
    margin-top: auto;
    padding-bottom: 30px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 991.98px) {
    .welcome-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .welcome-title {
        font-size: 48px;
    }
}

@media (max-width: 767.98px) {
    .welcome-container {
        padding-top: 40px;
    }
    
    .welcome-header {
        margin-bottom: 40px;
    }
    
    .welcome-logo {
        height: 40px;
    }
    
    .welcome-text-content {
        margin-bottom: 40px;
    }

    .welcome-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .welcome-subtitle {
        font-size: 16px;
    }
    
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .welcome-card {
        height: 350px;
    }
    
    .welcome-card-content {
        padding: 24px;
    }

    .welcome-card-footer {
        flex-direction: column;
        gap: 16px;
    }
    
    .welcome-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .welcome-card-location {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
    }
    
    .welcome-card-location .loc-label::after {
        content: " |";
    }
}

/* ==========================================
   RESERVATION MODAL STYLES
   ========================================== */

/* Modal Darkened Backdrop Overlay */
.reservation-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Modal Active State */
.reservation-modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Modal Box Container */
.reservation-modal-dialog {
    width: 100%;
    max-width: 620px;
    margin: 20px;
    position: relative;
}

/* Dark Card Body with Blue Glow/Border */
.reservation-modal-content {
    background: #0a0e17;
    /* Dark background matching design */
    border: 1px solid #1e50a2;
    box-shadow: 0 0 25px rgba(30, 144, 255, 0.25);
    border-radius: 12px;
    padding: 36px 32px;
    position: relative;
    color: #ffffff;
}

/* Close Button */
.reservation-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.reservation-modal-close:hover {
    opacity: 1;
}

/* Modal Title */
.reservation-modal-title {
    font-size: 28px !important;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #ffffff;
    text-transform: uppercase;
}

.reservation-title-divider {
    width: 48px;
    height: 2px;
    background-color: #36a9e1;
    margin: 0 auto 28px auto;
}

/* Form Controls & Inputs */
.reservation-modal-content .kontakt-form-control {
    background-color: #161b26 !important;
    border: 1px solid #2a3245 !important;
    color: #ffffff !important;
    border-radius: 6px;
    padding: 12px 16px !important;
    font-size: 15px !important;
    width: 100%;
}

.reservation-modal-content .kontakt-form-control::placeholder {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4) !important;
}

.reservation-modal-content .kontakt-form-control:focus {
    border-color: #36a9e1 !important;
    outline: none;
}

/* 1. Ensure normal text/date/email inputs DO NOT have any background icon */
.reservation-modal-content input.kontakt-form-control,
.reservation-modal-content textarea.kontakt-form-control {
    background-image: none !important;
}

/* 2. Target ONLY the <select> element for the custom dropdown chevron */
.reservation-modal-content select.kontakt-form-select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;

    /* Custom chevron SVG background */
    background-image: url("/assets/icons/chevron-down-white.svg") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 16px 16px !important;

    padding-right: 40px !important;
    cursor: pointer;
}

.reservation-modal-content select.kontakt-form-select option {
    background-color: #161b26;
    color: #ffffff;
}

.reservation-modal-content select.kontakt-form-select::-ms-expand {
    display: none;
}

/* Field Labels */
.reservation-modal-content .kontakt-form-label {
    font-size: 13px !important;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #ffffff;
    margin-bottom: 8px;
    display: block;
}

/* Blue Submit Button (Content Width) */
.reservation-submit-btn {
    background-color: #2b82fb !important;
    border: none !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px !important;
    border-radius: 6px;
    width: auto !important;
    display: inline-block;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.reservation-submit-btn:hover {
    background-color: #1a6edb !important;
}