/**
 * Single Location Page Styles
 * Pinkbox Doughnuts
 */

/* Location Page Variables */
:root {
    --pinkbox-primary: #E91E8C;
    --pinkbox-dark: #1a1a1a;
    --pinkbox-light: #ffffff;
    --pinkbox-gray: #f8f9fa;
}

/* Hero Section */
.location-hero {
    position: relative;
    padding: 120px 0 80px;
    color: var(--pinkbox-light);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
	margin-top: 90px !important;
}

.location-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.location-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.location-hero .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darker overlay to match design */
}

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

.location-hero .hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.location-hero .hero-title {
    font-size: 48px !important;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.2 !important;
	color: #FFFFFF;
	margin-top: 0px;
}

.location-hero .hero-description {
    font-size: 16px !important;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
	color: #FFFFFF;
}

.location-hero .btn-primary {
    background-color: var(--pinkbox-primary);
    border-color: var(--pinkbox-primary);
    padding: 8px 60px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.location-hero .btn-primary:hover {
    background-color: #c91975;
    border-color: #c91975;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 140, 0.4);
}

.location-hero .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.location-hero .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 8px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.location-hero .btn-outline-light:hover {
    color: var(--pinkbox-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* About Location Section */
.about-location-section {
    background-color: var(--pinkbox-light);
    padding: 80px 0;
}

.about-location-section .section-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--pinkbox-primary);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.about-location-section .location-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.about-location-section .location-description p {
    margin-bottom: 15px;
}

.about-location-section .location-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-location-section .location-image img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 400px;
    object-fit: cover;
}

/* Contact & Location Details Section */
.contact-location-details {
    background: #E91E8C; /* Solid pink to match your design */
    padding: 80px 0;
    color: var(--pinkbox-light);
}

.contact-location-details .section-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.contact-location-details .detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-location-details .detail-item i {
    font-size: 24px;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-location-details .detail-item p,
.contact-location-details .detail-item .hours-content {
    font-size: 16px !important;
    line-height: 1.8;
    margin: 0;
	color: #FFFFFF;
}

.contact-location-details .detail-item a {
    color: var(--pinkbox-light);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-location-details .detail-item a:hover {
    opacity: 0.8;
}

.contact-location-details .amenities-content,
.contact-location-details .coffee-content {
    font-size: 16px;
    line-height: 1.8;
}

.contact-location-details .amenities-content i,
.contact-location-details .coffee-content i {
    margin-right: 10px;
    color: white;
}

.contact-location-details .cross-streets i {
    margin-right: 10px;
}

.contact-location-details .detail-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-location-details .btn {
    padding: 12px 65px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-location-details .btn-primary-custom {
    background-color: white;
    color: #E91E8C !important;
    border: 2px solid white;
    font-weight: 700;
	border-radius: 20px;
}

.contact-location-details .btn-primary-custom:hover {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #E91E8C !important;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.contact-location-details .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    font-weight: 700;
}

.contact-location-details .btn-outline-light:hover {
    background-color: white;
    color: #E91E8C;
    border-color: white;
}

.contact-location-details .btn-light {
    background-color: transparent;
    color: #E91E8C;
    border: 2px solid white;
    font-weight: 700;
}

.contact-location-details .btn-light:hover {
    color: white;
    border-color: white;
	box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.contact-location-details .detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.contact-location-details .detail-image img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 400px;
    object-fit: cover;
}

/* Map Section */
.location-map-section {
    background-color: var(--pinkbox-gray);
    padding: 80px 0;
}

.location-map-section .section-title {
    font-size: 32px;
    font-weight: 900;
    color: #E31C93;
    text-transform: uppercase;
}

.location-map-section p {
    font-size: 16px !important;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
}

.location-map-section .map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-map-section .map-embed iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.location-map-section .map-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.location-map-section .map-link:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.location-map-section .map-link img,
.location-map-section .map-image {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    transition: opacity 0.3s ease;
}

.location-map-section .map-link:hover img {
    opacity: 0.95;
}

.location-map-section .map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(233, 29, 140, 0.95);
    color: white !important;
    padding: 20px 40px;
    border-radius: 50px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.location-map-section .map-link:hover .map-overlay {
    opacity: 1;
}

.location-map-section .map-overlay i {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.location-map-section .map-overlay p {
    margin: 0;
    font-size: 18px !important;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF !important;
}

/* Additional Sections */
.additional-section {
    padding: 80px 0;
    background-color: var(--pinkbox-light);
}

.additional-section:nth-child(even) {
    background-color: var(--pinkbox-gray);
}

.additional-section .section-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--pinkbox-primary);
    text-transform: uppercase;
}

.additional-section .section-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .location-hero {
        padding: 80px 0 60px;
        min-height: 400px;
		margin-top: 40px !important;
    }
    
    .location-hero .hero-title {
        font-size: 36px !important;
    }
    
    .about-location-section,
    .contact-location-details,
    .location-map-section,
    .additional-section {
        padding: 60px 0;
    }
    
    .about-location-section .section-title,
    .contact-location-details .section-title,
    .location-map-section .section-title,
    .additional-section .section-title {
        font-size: 28px;
    }
	.contact-location-details .section-title {
    	margin-bottom: 20px;
	}
	.contact-location-details .row {
		gap: 40px;
		flex-wrap: nowrap;
		flex-direction: row-reverse;
	}
	.contact-location-details .detail-item {
		margin-bottom: 20px;
	}
	.contact-location-details .col-lg-6 {
		padding: 0px;
	}
    
    .about-location-section .location-image {
        margin-top: 30px;
    }
	.contact-location-details .detail-buttons {
		margin-top: 20px;
	}
}

@media (max-width: 767px) {
	.location-hero .btn-primary {
		padding: 8px 30px;
		margin: 0px;
	}
	
	.location-hero .btn-outline-light {
		margin: 0px;
	}
	
	.location-hero {
		margin-top: 30px !important;
	}
	
    .location-hero .hero-title {
        font-size: 28px;
    }
    
    .location-hero .hero-subtitle {
        font-size: 14px;
    }
    
    .location-hero .hero-description {
        font-size: 14px;
    }
    
    .about-location-section .section-title,
    .contact-location-details .section-title,
    .location-map-section .section-title,
    .additional-section .section-title {
        font-size: 24px;
    }
    
    .contact-location-details .detail-buttons {
        flex-direction: column;
    }
	
	.contact-location-details .row {
		flex-wrap: wrap;
		
	}
	
	.contact-location-details .col-lg-6 {
		padding: 0px 15px;
	}
    
    .contact-location-details .btn {
        width: 100%;
        text-align: center;
    }
    
    .location-map-section .map-embed iframe {
        height: 350px;
    }
	
}

/* Loading Animation */
.location-single-page section {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .location-hero .hero-background::after {
        background: rgba(0, 0, 0, 0.4);
    }
    
    .contact-location-details .detail-buttons {
        display: none;
    }
}