/* Single Location Template Styles */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.py-8 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mb-8 {
    margin-bottom: 4rem;
}

/* Hero Section */
.location-hero {
    position: relative;
    width: 100%;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    width: 100%;
    padding: 2rem 0;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.location-meta {
    /* display: flex; */
    gap: 2rem;
    font-size: 1.125rem;
}

/* Content Grid */
.location-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .location-content-grid {
        grid-template-columns: 1fr;
    }
}

/* Main Content */
.location-main-content h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-card {
    display: block;
    position: relative;
    overflow: hidden;
}

.gallery-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-image:hover .gallery-thumb {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 1rem;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.gallery-image:hover .gallery-caption {
    opacity: 1;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.detail-column ul {
    list-style: none;
    padding: 0;
}

.detail-column ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.detail-column ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2F8892;
}

/* Sidebar Widgets */
.location-sidebar > div {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.booking-widget h3,
.contact-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-display {
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-amount {
    font-size: 2rem;
    font-weight: 600;
    color: #2F8892;
}

.price-period {
    color: #666;
}

/* Form Styles */
.booking-form .form-group {
    margin-bottom: 1rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.btn-primary {
    background-color: #2F8892;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #246d75;
}

.btn-secondary {
    background-color: #fff;
    color: #2F8892;
    border: 2px solid #2F8892;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
}

/* Contact Info */
.contact-info {
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: #333;
    margin-right: 0.5rem;
}

/* Lightbox2 customization */
.lightboxOverlay {
    z-index: 9999 !important;
}

.lightbox {
    z-index: 10000 !important;
} 