/* Studio Marcela - Dark Theme CSS - Black backgrounds with Gold accents */

/* Color Variables */
:root {
    --gold: #D4AF37;
    --gold-light: #E5C97A;
    --gold-dark: #B8941F;
    --black: #000000;
    --black-dark: #0a0a0a;
    --black-light: #1a1a1a;
    --gray-dark: #2a2a2a;
    --gray-medium: #3a3a3a;
    --white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #999999;
    --bg-primary: #1a1a1a;
    --bg-secondary: #2a2a2a;
}

/* Global Styles */
body {
    background-color: var(--bg-primary);
    color: var(--text-light);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

/* Content Container - Dark Gray Background */
.container {
    background-color: transparent;
}

#mainBar {
    background-color: transparent;
}

.container {
    background-color: transparent;
}

/* Navigation - Dark Theme - Pure Black */
.navbar-inverse {
    background-color: var(--black) !important;
    border-color: var(--black) !important;
    border-bottom: none;
    margin-bottom: 0;
}

.navbar-brand {
    color: var(--white) !important;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--gold) !important;
    text-decoration: none;
}

.logo-text {
    background: linear-gradient(135deg, #E5D068 0%, #D4AF37 50%, #E5D068 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Adwaita Sans', sans-serif;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover .logo-text {
    opacity: 0.8;
}

.navbar-nav > li > a {
    color: var(--text-light) !important;
    padding: 15px 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    color: var(--gold) !important;
    background-color: transparent !important;
}

.navbar-nav > li.active > a {
    color: var(--gold) !important;
    border-bottom: 2px solid var(--gold);
}

.navbar-toggle {
    border-color: var(--gold);
}

.navbar-toggle .icon-bar {
    background-color: var(--gold);
}

/* Hero Section / Locations Gallery - Horizontal Strip */
.locations-gallery {
    display: flex;
    flex-wrap: nowrap;
    background-color: var(--bg-primary);
    margin: 0;
    padding: 20px 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.locations-gallery::-webkit-scrollbar {
    height: 8px;
}

.locations-gallery::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.locations-gallery::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.locations-gallery::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

.location-item {
    position: relative;
    flex: 1 1 16.666%;
    min-width: 200px;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.location-item:last-child {
    border-right: none;
}

.location-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.location-item {
    position: relative;
}

.image-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.image-thumbnail::after {
    content: '\f00e';
    font-family: 'FontAwesome';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(212, 175, 55, 0.9);
    color: var(--black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.image-thumbnail:hover::after {
    opacity: 1;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.image-thumbnail:hover .thumbnail-img {
    transform: scale(1.05);
}

.location-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 30px 20px 20px;
    color: var(--white);
    pointer-events: none;
    z-index: 2;
}

.location-overlay .btn-book {
    pointer-events: auto;
}

.location-overlay h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.location-overlay .btn-book {
    background: linear-gradient(to bottom, #e6d197 0%, #cbac64 100%);
    color: var(--black);
    padding: 8px 20px;
    border: 1px solid #cdc196;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
}

.location-overlay .btn-book:hover {
    background: linear-gradient(to bottom, #f0dba8 0%, #d4b875 100%);
    border-color: #cdc196;
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

/* Carousel fallback for mobile - Hidden on desktop */
#main-slider {
    background-color: var(--bg-primary);
    margin-bottom: 0;
    display: none;
}

#main-slider .item {
    position: relative;
}

#main-slider .carousel-image {
    width: 100%;
    max-height: 400px;
    height: auto;
    display: block;
    opacity: 0.8;
    object-fit: cover;
}

#main-slider .image-thumbnail {
    cursor: pointer;
}

#main-slider .image-thumbnail::after {
    content: '\f00e';
    font-family: 'FontAwesome';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(212, 175, 55, 0.9);
    color: var(--black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

#main-slider .image-thumbnail:hover::after {
    opacity: 1;
}

#main-slider .carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 5px;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
}

#main-slider .carousel-caption h1,
#main-slider .carousel-caption h2 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 300;
    letter-spacing: 2px;
}

#main-slider .prev,
#main-slider .next {
    background-color: rgba(212, 175, 55, 0.8);
    color: var(--black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

#main-slider .prev:hover,
#main-slider .next:hover {
    background-color: var(--gold);
    transform: scale(1.1);
}


/* Locations Hero Section - Background Image with Overlay */
.locations-hero-section {
    position: relative;
    min-height: 500px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 30px 20px 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-content-wrapper .container {
    position: relative;
    z-index: 2;
}

.hero-text-background {
    background: rgba(60, 60, 60, 0.7);
    padding: 30px 50px;
    display: inline-block;
    border-radius: 12px;
    margin: 0 auto;
}

.locations-main-title {
    background: linear-gradient(135deg, #E5D068 0%, #D4AF37 50%, #E5D068 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 auto 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    display: block;
}

.locations-subtitle {
    color: var(--white);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 auto;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    display: block;
}

.locations-section {
    background-color: var(--bg-primary);
    padding: 30px 0 0;
    position: relative;
}

.locations-city-name {
    color: var(--gold);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 10px 15px 8px;
}

.locations-city-name-desktop {
    display: none;
    background: linear-gradient(135deg, #E5D068 0%, #D4AF37 50%, #E5D068 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 12px 0 18px;
    text-align: center;
}

/* Desktop: 3-Column Grid Layout */
.locations-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px 40px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}


.location-card-grid {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.location-card-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.location-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--gray-dark);
}

.location-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card-grid:hover .location-thumbnail img {
    transform: scale(1.05);
}

.location-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.location-name-grid {
    color: var(--gold);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}

.location-neighborhood {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0 0 15px 0;
    font-weight: 400;
}

/* Desktop: Single Row Layout */
.locations-row-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 20px 40px;
}

.locations-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.location-card-row {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 200px;
    max-width: 280px;
}

.location-card-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.location-card-row:hover .location-thumbnail img {
    transform: scale(1.05);
}

.location-address {
    color: var(--gold);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.location-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.status-open {
    background-color: #4CAF50;
    box-shadow: 0 0 6px rgba(76, 175, 80, 0.6);
}

.status-indicator.status-closed {
    background-color: #f44336;
    box-shadow: 0 0 6px rgba(244, 67, 54, 0.6);
}

.status-text {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

/* Desktop location buttons - Golden border, transparent background, subtle and stylish */
.location-actions .btn-phone,
.location-actions .btn-whatsapp,
.location-actions .btn-link-directions {
    background: transparent;
    color: #c89b3c;
    border: 1px solid #cbac64;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(200, 155, 60, 0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.location-actions .btn-phone:hover,
.location-actions .btn-whatsapp:hover,
.location-actions .btn-link-directions:hover {
    color: #e6d197;
    border-color: #e6d197;
    box-shadow: 0 0 10px rgba(200, 155, 60, 0.4), inset 0 0 10px rgba(200, 155, 60, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-book-now {
    background: linear-gradient(to bottom, #e6d197 0%, #cbac64 100%);
    color: var(--black);
    padding: 12px 24px;
    border: 1px solid #cdc196;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-book-now:hover,
.btn-book-now:focus {
    background: linear-gradient(to bottom, #f0dba8 0%, #d4b875 100%);
    border-color: #cdc196;
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 6px 12px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.btn-phone {
    background: linear-gradient(to bottom, #e6d197 0%, #cbac64 100%);
    color: var(--black);
    padding: 12px 24px;
    border: 1px solid #cdc196;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-phone:hover,
.btn-phone:focus {
    background: linear-gradient(to bottom, #f0dba8 0%, #d4b875 100%);
    border-color: #cdc196;
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 6px 12px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.btn-phone i {
    margin-right: 6px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #4FCE5D 0%, #45B854 50%, #3FA84B 100%);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(79, 206, 93, 0.3);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background: linear-gradient(135deg, #5DDC6B 0%, #4FCE5D 50%, #45B854 100%);
    color: #fff;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(79, 206, 93, 0.5);
    transform: translateY(-2px);
}

.btn-whatsapp i {
    margin-right: 6px;
}

.btn-link-directions {
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.btn-link-directions:hover,
.btn-link-directions:focus {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Mobile: Accordion Layout */
.locations-accordion {
    display: none;
    max-width: 100%;
    padding: 0 15px 30px;
}

.accordion-item {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--gray-dark);
}

.accordion-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    gap: 10px;
}

.accordion-location-name {
    color: var(--gold);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 2px 0;
    flex-grow: 1;
}

.accordion-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.accordion-address {
    color: var(--text-gray);
    font-size: 12px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.accordion-icon {
    color: var(--gold);
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-thumbnail {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: var(--gray-dark);
}

.accordion-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion-neighborhood {
    color: var(--text-gray);
    font-size: 14px;
    margin: 15px 20px 10px;
    font-weight: 400;
}

.accordion-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px 20px;
}

/* Accordion buttons - Golden border, transparent background, subtle and stylish */
.accordion-actions .btn-phone,
.accordion-actions .btn-whatsapp,
.accordion-actions .btn-link-directions {
    width: 100%;
    padding: 8px 16px;
    font-size: 13px;
    background: transparent;
    color: #c89b3c;
    border: 1px solid #cbac64;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(200, 155, 60, 0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.accordion-actions .btn-phone:hover,
.accordion-actions .btn-whatsapp:hover,
.accordion-actions .btn-link-directions:hover {
    color: #e6d197;
    border-color: #e6d197;
    box-shadow: 0 0 10px rgba(200, 155, 60, 0.4), inset 0 0 10px rgba(200, 155, 60, 0.1);
    transform: translateY(-1px);
    text-decoration: none;
}

.accordion-actions .btn-phone i,
.accordion-actions .btn-whatsapp i,
.accordion-actions .btn-link-directions i {
    margin-right: 8px;
    font-size: 13px;
}

/* Responsive: Hide row layout on mobile, show accordion */
@media (max-width: 768px) {
    .locations-row-container {
        display: none;
    }
    
    .locations-grid-container {
        display: none;
    }
    
    .locations-accordion {
        display: block;
    }
    
    .locations-city-name-desktop {
        display: none;
    }
}

/* Desktop: Show city names, hide mobile city names */
@media (min-width: 769px) {
    .locations-city-name-desktop {
        display: block;
    }
    
    .locations-city-name {
        display: none;
    }
}

/* Desktop: Single row layout - responsive widths */
@media (min-width: 769px) {
    .locations-row {
        gap: 15px;
    }
    
    .location-card-row {
        min-width: 180px;
        max-width: 220px;
    }
}

@media (min-width: 992px) {
    .location-card-row {
        min-width: 200px;
        max-width: 250px;
    }
}

@media (min-width: 1200px) {
    .locations-row-container {
        max-width: 1600px;
    }
    
    .location-card-row {
        min-width: 220px;
        max-width: 300px;
    }
    
    .locations-row {
        gap: 20px;
    }
}

@media (min-width: 1600px) {
    .locations-row-container {
        max-width: 1800px;
    }
    
    .location-card-row {
        min-width: 240px;
        max-width: 320px;
    }
    
    .locations-row {
        gap: 25px;
    }
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .locations-hero-section {
        min-height: 280px;
        padding: 30px 20px;
        background-position: center center !important;
        background-size: 180% auto !important;
        background-repeat: no-repeat !important;
    }
    
    .hero-content-wrapper {
        padding: 20px 20px 40px;
    }
    
    .hero-text-background {
        padding: 25px 35px;
        width: 90%;
        max-width: 100%;
        border-radius: 10px;
    }
    
    .locations-main-title {
        font-size: 42px;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }
    
    .locations-subtitle {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
}

@media (max-width: 480px) {
    .locations-hero-section {
        min-height: 220px;
        background-position: center center !important;
        background-size: 200% auto !important;
        background-repeat: no-repeat !important;
    }
    
    .hero-content-wrapper {
        padding: 10px 15px 30px;
    }
    
    .hero-text-background {
        padding: 15px 20px;
        width: 85%;
        max-width: 90%;
        border-radius: 8px;
    }
    
    .locations-main-title {
        font-size: 28px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    
    .locations-subtitle {
        font-size: 14px;
        margin-bottom: 0;
    }
}

/* Services Section (Triptih) */
.triptih {
    background-color: var(--bg-secondary);
    padding: 40px 0;
    margin-bottom: 0;
    border-top: 1px solid var(--gray-dark);
    border-bottom: 1px solid var(--gray-dark);
}

.triptih a {
    display: block;
    padding: 20px;
    background-color: var(--gray-dark);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.triptih a:hover {
    background-color: var(--gray-medium);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

.triptih span {
    font-weight: 600;
    font-size: 14px;
}

/* Salon Locations Grid */
.articleList {
    margin-bottom: 30px;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    position: relative;
}

.listItemBg1,
.listItemBg2 {
    background-color: var(--bg-secondary);
    padding: 0;
    margin-bottom: 20px;
    border: 1px solid var(--gray-dark);
    transition: all 0.3s ease;
}

.listItemBg1:hover,
.listItemBg2:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.articleList section {
    padding: 25px;
}

.articleTitle {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
}

.articleTitle a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.articleTitle a:hover {
    color: var(--gold);
    text-decoration: none;
}

.listImage {
    margin-bottom: 15px;
    overflow: hidden;
}

.listImage img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.listItemBg1:hover .listImage img,
.listItemBg2:hover .listImage img {
    transform: scale(1.05);
}

.listDescription {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 14px;
}

/* Buttons - Gold Theme */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary,
.btn-gold {
    background: linear-gradient(to bottom, #e6d197 0%, #cbac64 100%);
    color: var(--black);
    border: 1px solid #cdc196;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover,
.btn-gold:hover {
    background: linear-gradient(to bottom, #f0dba8 0%, #d4b875 100%);
    border-color: #cdc196;
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-outline-gold {
    background-color: transparent;
    color: #e6d197;
    border: 1px solid #cdc196;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: linear-gradient(to bottom, #e6d197 0%, #cbac64 100%);
    color: var(--black);
    border-color: #cdc196;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Detail Article */
.detArticle {
    background-color: var(--bg-secondary);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    margin-bottom: 30px;
    border: 1px solid var(--gray-dark);
}

.detTitle {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--white);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.articleContent {
    line-height: 1.8;
    color: var(--text-light);
}

.articleContent h3 {
    color: var(--gold);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 400;
}

/* Forms */
.form-control {
    background-color: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    color: var(--text-light);
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
}

.form-control:focus {
    background-color: var(--gray-dark);
    border-color: var(--gold);
    color: var(--text-light);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
}

.form-control::placeholder {
    color: var(--text-gray);
}

label {
    color: var(--text-light);
    font-weight: 500;
}

/* Footer - Pure Black */
.footer {
    background-color: var(--black) !important;
    color: var(--text-gray);
    padding: 50px 0 30px;
    margin-top: 60px;
    border-top: none;
}

.footer a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--gold);
    text-decoration: none;
}

.footer .social-icons {
    text-align: center;
    margin-top: 20px;
}

.footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: transparent;
    color: var(--gold);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    text-decoration: none;
}

.footer .social-icons a i {
    display: inline-block;
    font-size: 18px;
    line-height: 36px;
    vertical-align: middle;
}

.footer .social-icons a:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    border-color: var(--gold-light);
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 15px 0;
    margin-bottom: 20px;
}

.breadcrumb > li + li:before {
    content: "/ ";
    padding: 0 10px;
    color: var(--text-gray);
}

.breadcrumb > li > a {
    color: var(--text-gray);
    text-decoration: none;
}

.breadcrumb > li > a:hover {
    color: var(--gold);
}

.breadcrumb > .active {
    color: var(--gold);
}

/* Tools / Search */
.tools {
    background-color: var(--bg-secondary);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-dark);
    margin-bottom: 30px;
}

.tools .form-control {
    background-color: var(--gray-dark);
    border-color: var(--gray-medium);
}

/* Panels */
.panel {
    background-color: var(--bg-secondary);
    border: 1px solid var(--gray-dark);
    border-radius: 5px;
}

.panel-default {
    border-color: var(--gray-dark);
}

.panel-heading {
    background-color: var(--gray-dark);
    border-bottom: 1px solid var(--gray-medium);
    color: var(--text-light);
}

.panel-title {
    color: var(--white);
    font-weight: 500;
}

.panel-body {
    background-color: var(--bg-secondary);
    color: var(--text-light);
}

/* Tables */
.table {
    background-color: transparent;
    color: var(--text-light);
}

.table > thead > tr > th {
    border-bottom: 2px solid var(--gray-medium);
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table > tbody > tr > td {
    border-top: 1px solid var(--gray-dark);
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: var(--gray-dark);
}

.table-bordered {
    border: 1px solid var(--gray-dark);
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > td {
    border: 1px solid var(--gray-dark);
}

/* Labels and Badges */
.label {
    background-color: var(--gray-medium);
    color: var(--text-light);
}

.label-success {
    background-color: var(--gold);
    color: var(--black);
}

.label-info {
    background-color: var(--gold-dark);
    color: var(--white);
}

.badge {
    background-color: var(--gold);
    color: var(--black);
}

/* Alerts */
.alert {
    background-color: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    color: var(--text-light);
    border-radius: 5px;
}

.alert-info {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.alert-warning {
    background-color: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--gold-light);
}

/* Loyalty Card - Matte Black with Gold */
.loyalty-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.3);
    position: relative;
    overflow: hidden;
}

.loyalty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.loyalty-card h1,
.loyalty-card h2,
.loyalty-card h3,
.loyalty-card h4 {
    color: var(--gold);
    font-weight: 300;
    letter-spacing: 2px;
}

.loyalty-card p,
.loyalty-card span,
.loyalty-card td,
.loyalty-card th {
    color: var(--gold);
}

.loyalty-card .customer-initials-circle {
    background-color: var(--gold) !important;
    color: var(--black) !important;
    border: 3px solid var(--gold-light);
}

/* Services Section Styling */
.services-section {
    background-color: var(--bg-secondary);
    padding: 60px 0;
    margin: 0;
    border-top: 1px solid var(--gray-dark);
    border-bottom: 1px solid var(--gray-dark);
}

.services-section h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-subtitle {
    color: var(--text-gray) !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    display: block;
    margin-top: 10px;
}

.services-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: var(--gold);
    margin: 20px auto;
}

.btn-view-menu {
    margin-top: 40px;
}

.service-icon {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
}

.service-icon i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.service-icon:hover i {
    transform: scale(1.1);
    color: var(--gold-light);
}

.service-icon h3 {
    color: var(--white);
    font-weight: 400;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-icon-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-icon-link:hover .service-icon {
    transform: translateY(-3px);
}

/* Shop Section */
.shop-section {
    background-color: var(--bg-primary);
    padding: 60px 0;
    margin: 40px 0;
}

.shop-section h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shop-subtitle {
    color: var(--text-gray) !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    display: block;
    margin-top: 10px;
}

.product-image-placeholder {
    background-color: var(--gray-dark);
    padding: 30px;
    margin-bottom: 15px;
    border-radius: 5px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder-inner {
    width: 100px;
    height: 200px;
    background-color: var(--bg-secondary);
    border-radius: 5px;
}

.btn-shop {
    font-size: 12px;
    padding: 8px 20px;
}

.explore-products-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    margin-top: 30px;
    display: inline-block;
}

.explore-products-link:hover {
    color: var(--gold-light);
    text-decoration: none;
}

.product-card {
    background-color: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    background-color: var(--gray-medium);
}

.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.product-card h4 {
    color: var(--white);
    margin-bottom: 15px;
}

/* Loyalty Club Section */
.loyalty-club-section {
    background: transparent;
    padding: 80px 0;
    margin: 60px 0;
    position: relative;
}

.loyalty-club-section h2 {
    color: var(--white);
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.loyalty-subtitle {
    color: var(--text-gray) !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    display: block;
    margin-top: 10px;
}

.loyalty-description {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-join {
    font-size: 16px;
    padding: 15px 40px;
}

.loyalty-card-image-wrapper {
    text-align: center;
    padding: 20px;
    position: relative;
    background: transparent;
}

.loyalty-card-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    background: transparent;
}

.loyalty-card-image:hover {
    transform: translateY(-5px) scale(1.02);
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .location-item {
        flex: 1 1 33.333%;
        min-width: 33.333%;
    }
}

@media (max-width: 768px) {
    .detArticle {
        padding: 20px;
    }
    
    .detTitle {
        font-size: 24px;
    }
    
    .articleTitle {
        font-size: 20px;
    }
    
    .services-section h2,
    .shop-section h2,
    .loyalty-club-section h2 {
        font-size: 28px;
    }
    
    .loyalty-club-section .col-md-6 {
        margin-bottom: 30px;
    }
    
    .loyalty-card-image-wrapper {
        padding: 10px;
    }
    
    .loyalty-card {
        padding: 25px;
    }
    
    .navbar-nav > li > a {
        padding: 12px 15px;
    }
    
    /* Locations Gallery - Mobile: Hide horizontal gallery, show carousel */
    .locations-gallery {
        display: none !important;
    }
    
    #main-slider {
        display: block !important;
    }
    
    .location-item {
        flex: 1 1 100%;
        min-width: 100%;
        height: 300px;
    }
    
    /* Services Section - Mobile */
    .services-section {
        padding: 40px 0;
    }
    
    .service-icon {
        padding: 20px 10px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 36px;
    }
    
    .service-icon h3 {
        font-size: 11px;
    }
    
    /* Shop Section - Mobile */
    .shop-section {
        padding: 40px 0;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
    
    /* Loyalty Club - Mobile */
    .loyalty-club-section {
        padding: 40px 0;
    }
    
    .loyalty-club-section h2 {
        font-size: 24px;
    }
    
    .loyalty-club-section .col-md-5 {
        margin-top: 30px;
    }
    
    /* Footer - Mobile */
    .footer .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .footer .col-md-4 {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 30px !important;
        margin-top: 0 !important;
        text-align: center !important;
        display: block !important;
        float: none !important;
        clear: both !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
    
    /* Studio Marcela - First section */
    .footer .col-md-4:first-child {
        margin-bottom: 30px !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        text-align: center !important;
    }
    
    .footer .col-md-4:first-child h3 {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        text-align: center !important;
    }
    
    .footer .col-md-4:first-child .navbar-brand {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    /* Menu - Second section */
    .footer .col-md-4:nth-child(2) {
        margin-top: 0 !important;
        margin-bottom: 30px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        text-align: center !important;
    }
    
    /* Social Icons - Third section */
    .footer .col-md-4:last-child {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        text-align: center !important;
    }
    
    .footer .col-md-4.text-right {
        text-align: center !important;
    }
    
    .footer .social-icons {
        text-align: center !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
    }
    
    .footer .social-icons a {
        margin: 0 8px;
        display: inline-block;
    }
    
    .footer ul {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        text-align: center !important;
        display: inline-block !important;
    }
    
    .footer ul li {
        margin-bottom: 12px !important;
        text-align: center !important;
    }
    
    .footer ul li:last-child {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .location-overlay h3 {
        font-size: 14px;
    }
    
    .location-overlay .btn-book {
        padding: 6px 15px;
        font-size: 10px;
    }
    
    .services-section h2,
    .shop-section h2,
    .loyalty-club-section h2 {
        font-size: 24px;
    }
    
    .service-icon {
        padding: 15px 5px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
}

/* Dropdown Menus */
.dropdown-menu {
    background-color: var(--bg-secondary);
    border: 1px solid var(--gray-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.dropdown-menu > li > a {
    color: var(--text-light);
    padding: 10px 20px;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    background-color: var(--gray-dark);
    color: var(--gold);
}

.dropdown-menu .divider {
    background-color: var(--gray-dark);
    border-color: var(--gray-medium);
}

/* Language Dropdown */
.lang-dropdown {
    min-width: 200px !important;
}

.lang-dropdown > li > a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-dropdown > li > a:hover {
    background-color: var(--gray-dark);
    color: var(--gold);
}

/* Search Form */
#searchForm .form-control {
    background-color: var(--gray-dark);
    border-color: var(--gray-medium);
    color: var(--text-light);
}

#searchForm .btn-default {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

#searchForm .btn-default:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
}

/* Breadcrumb Links */
.breadcrumb > li > a {
    color: var(--text-gray);
}

.breadcrumb > li > a:hover {
    color: var(--gold);
}

.breadcrumb .home-link {
    color: var(--gold);
}

.breadcrumb .home-link:hover {
    color: var(--gold-light);
}

/* Utility Classes */
.text-gold {
    color: var(--gold) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-black-light {
    background-color: var(--black-light) !important;
}

.border-gold {
    border-color: var(--gold) !important;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--gold);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--gold-light);
}

body.lightbox-open {
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Ensure all images are thumbnails by default */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

