/* Locations Page Styles */

/* Headquarters Section */
.headquarters-section {
    padding: 80px 0;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: var(--gray);
    margin-top: 15px;
}

.headquarters-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: 0 auto;
}

.hq-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.hq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hq-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hq-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hq-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.hq-address {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--off-white);
    border-radius: 8px;
}

.address-icon {
    font-size: 24px;
}

.address-line {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: var(--dark);
    margin: 0;
    line-height: 1.6;
}

.hq-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    color: var(--gray);
}

.feature-icon {
    font-size: 20px;
}

.hq-actions {
    display: flex;
    gap: 15px;
}

.hq-actions .btn {
    flex: 1;
    text-align: center;
    padding: 14px 20px;
}

/* Tents Section */
.tents-section {
    padding: 80px 0 120px;
    background: white;
}

.location-filter {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

.location-filter input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.location-filter input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.location-count {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: var(--gray);
    margin-top: 15px;
}

.location-count span {
    font-weight: 700;
    color: var(--primary-red);
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.location-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(220, 20, 60, 0.95);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.location-info {
    padding: 25px;
}

.location-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.location-address {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: var(--dark);
    gap: 8px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
}

.no-results p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: var(--gray);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .headquarters-section {
        padding: 60px 0;
    }

    .headquarters-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hq-image {
        min-height: 300px;
    }

    .hq-info {
        padding: 30px 25px;
    }

    .hq-info h3 {
        font-size: 26px;
    }

    .hq-features {
        grid-template-columns: 1fr;
    }

    .hq-actions {
        flex-direction: column;
    }

    .tents-section {
        padding: 60px 0 80px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-image {
        height: 180px;
    }

    .location-info {
        padding: 20px;
    }

    .location-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 40px;
    }

    .section-intro {
        font-size: 16px;
    }

    .hq-info h3 {
        font-size: 22px;
    }

    .hq-address {
        padding: 15px;
    }

    .location-filter input {
        padding: 12px 18px;
        font-size: 14px;
    }
}
