/*! Base Styles - Shared across all themes */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Layout Structure - Same for all themes */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
}

.header-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .header-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header-content {
        padding: 0 2rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Main Layout */
.main-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
    padding-top: 96px;
    padding-bottom: 4rem;
}

@media (min-width: 640px) {
    .main-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .main-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Gallery Structure */
.image-gallery {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    height: 400px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .gallery-grid {
        height: 500px;
    }
}

.gallery-main {
    grid-column: span 4;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

@media (min-width: 768px) {
    .gallery-main {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.gallery-secondary {
    display: none;
}

@media (min-width: 768px) {
    .gallery-secondary {
        display: grid;
        grid-column: span 2;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.gallery-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: block;
}

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

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

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

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

/* Shoots Grid */
.shoots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.shoot-card {
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.shoot-card:hover {
    transform: translateY(-4px);
}

.shoot-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.shoot-content {
    padding: 1.5rem;
}

.shoot-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.shoot-description {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.shoot-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.shoot-availability {
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
}

.instant-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 0.5rem;
}

.book-button {}
.book-button:hover {}

/* Page Headers */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.125rem;
}

.shoots-section {
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Booking Sidebar */
.booking-sidebar {
    position: relative;
}

@media (min-width: 1024px) {
    .booking-sidebar {
        position: sticky;
        top: 96px;
        height: fit-content;
    }
}

.airbnb-card {
    padding: 1.5rem;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .airbnb-card {
        max-width: 384px;
    }
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
    min-height: 400px;
}

/* Form Elements */
.field-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
}

/* Utility Classes */
.empty-state {
    text-align: center;
    padding: 3rem;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
