/* ===================================
   VENUE PAGE STYLES - MOBILE FIRST
   =================================== */

/* Variables */
:root {
    --venue-primary: #F3992B;
    --venue-secondary: #3F5348;
    --venue-accent: #E8F4FD;
    --venue-text: #2c3e50;
    --venue-light: #f8f9fa;
    --venue-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --venue-transition: all 0.3s ease;
}

/* Hero Section */
.venue-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(63, 83, 72, 0.2), rgba(243, 153, 43, 0.1)), url('../../images/DSC04793.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--venue-light);
    padding-top: 80px; /* Account for fixed header */
}

/* Responsive padding for mobile */
@media (max-width: 768px) {
    .venue-hero {
        padding-top: 70px; /* Slightly less on mobile */
        min-height: 60vh;
    }
}

@media (max-width: 480px) {
    .venue-hero {
        padding-top: 60px; /* Even less on small mobile */
        min-height: 50vh;
    }
}

.venue-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(63, 83, 72, 0.85), rgba(243, 153, 43, 0.75));
    z-index: 1;
}

.venue-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.venue-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.venue-hero .highlight {
    color: var(--venue-accent);
    position: relative;
    display: inline-block;
}

.venue-hero .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--venue-accent);
    border-radius: 2px;
    animation: highlightGrow 1s ease-out 0.5s both;
}

@keyframes highlightGrow {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.venue-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--venue-transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-buttons .btn-primary {
    background: var(--venue-primary);
    color: white;
    border: none;
}

.hero-buttons .btn-secondary {
    background: var(--venue-secondary);
    color: white;
    border: none;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--venue-shadow);
    opacity: 0.9;
}

/* Venue Information */
.venue-info {
    padding: 4rem 0;
    background: var(--venue-light);
}

.venue-info-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.venue-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--venue-text);
    text-align: center;
}

.detail-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--venue-shadow);
    margin-bottom: 1rem;
    transition: var(--venue-transition);
}

.detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.detail-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--venue-primary), var(--venue-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.detail-content h3 {
    margin: 0 0 0.5rem 0;
    color: var(--venue-text);
    font-size: 1.2rem;
}

.detail-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.venue-actions {
    margin-top: 2rem;
}

.action-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--venue-shadow);
    text-align: center;
}

.action-card h3 {
    margin-bottom: 1.5rem;
    color: var(--venue-text);
    font-size: 1.3rem;
}

.action-buttons {
    display: grid;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--venue-primary), var(--venue-secondary));
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--venue-transition);
    cursor: pointer;
    justify-content: center;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 153, 43, 0.3);
}

/* Interactive Map */
.interactive-map {
    padding: 4rem 0;
    background: white;
}

.interactive-map h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--venue-text);
    font-size: 2rem;
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--venue-shadow);
    margin-bottom: 2rem;
}

.google-map {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.map-controls {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.map-btn {
    padding: 0.5rem 1rem;
    background: white;
    border: none;
    border-radius: 6px;
    box-shadow: var(--venue-shadow);
    cursor: pointer;
    transition: var(--venue-transition);
    font-size: 0.9rem;
    white-space: nowrap;
}

.map-btn:hover {
    background: var(--venue-light);
}

.map-btn i {
    margin-right: 0.5rem;
    color: var(--venue-primary);
}

/* Directions Panel */
.directions-panel {
    background: var(--venue-light);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.directions-input h3 {
    margin-bottom: 1rem;
    color: var(--venue-text);
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.input-group input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    min-width: 200px;
}

.input-group input:focus {
    outline: none;
    border-color: var(--venue-primary);
}

.quick-locations h4 {
    margin-bottom: 1rem;
    color: var(--venue-text);
    font-size: 1rem;
}

.location-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.location-chip {
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid var(--venue-primary);
    border-radius: 20px;
    color: var(--venue-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--venue-transition);
}

.location-chip:hover {
    background: var(--venue-primary);
    color: white;
}

.location-chip i {
    margin-right: 0.5rem;
}

.directions-results {
    margin-top: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    display: none;
}

.directions-results.show {
    display: block;
}

/* Campus Map */
.campus-map {
    padding: 4rem 0;
    background: var(--venue-light);
}

.campus-map h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--venue-text);
    font-size: 2rem;
}

.map-pdf-container {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pdf-viewer {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--venue-shadow);
}

.pdf-fallback {
    padding: 2rem;
    text-align: center;
    background: var(--venue-light);
}

.pdf-fallback a {
    color: var(--venue-primary);
    text-decoration: none;
    font-weight: 600;
}

.map-instructions h3 {
    margin-bottom: 1.5rem;
    color: var(--venue-text);
    font-size: 1.5rem;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--venue-shadow);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--venue-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--venue-text);
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Transportation */
.transportation {
    padding: 4rem 0;
    background: white;
}

.transportation h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--venue-text);
    font-size: 2rem;
}

.transport-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.transport-card {
    background: var(--venue-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: var(--venue-transition);
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--venue-shadow);
}

.transport-icon {
    width: 70px;
    height: 70px;
    background: var(--venue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.transport-card h3 {
    margin-bottom: 1rem;
    color: var(--venue-text);
    font-size: 1.3rem;
    text-align: center;
}

.transport-card ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
}

.transport-card li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.transport-card li:last-child {
    border-bottom: none;
}

/* Venue Contact */
.venue-contact {
    padding: 4rem 0;
    background: var(--venue-light);
}

.venue-contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--venue-text);
    font-size: 2rem;
}

.contact-options {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--venue-shadow);
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--venue-text);
    font-size: 1.3rem;
}

.contact-card p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--venue-primary), var(--venue-secondary));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--venue-transition);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 153, 43, 0.3);
}

/* Responsive Design */
@media (min-width: 768px) {
    .venue-hero h1 {
        font-size: 3rem;
    }
    
    .venue-info-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .action-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-container {
        height: 500px;
    }
    
    .input-group {
        flex-wrap: nowrap;
    }
    
    .input-group input {
        min-width: auto;
    }
    
    .map-pdf-container {
        grid-template-columns: 2fr 1fr;
    }
    
    .transport-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .venue-hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        flex-wrap: nowrap;
    }
    
    .transport-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .map-controls {
        flex-direction: row;
    }
    
    .location-chips {
        justify-content: flex-start;
    }
}
