/* Additional styles for new pages */

/* Hero section for pages without video background */
.hero {
    position: relative;
    margin-top: 0;
    padding-top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--soft-black) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23fff" opacity="0.05"/><circle cx="80" cy="40" r="0.3" fill="%23fff" opacity="0.05"/><circle cx="40" cy="80" r="0.4" fill="%23fff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    color: white;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Enhanced feature cards for experiences page */
.feature-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--light-beige);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Contact page specific styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--light-beige);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--medium-beige);
}

.contact-form {
    background: white;
    padding: 3rem;
    border: 1px solid var(--medium-beige);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-method {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--medium-beige);
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-method h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.contact-method p {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--charcoal);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--medium-beige);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--charcoal);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-1px);
}

.office-locations {
    margin-top: 3rem;
}

.office-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--medium-beige);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.office-card h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.office-card p {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
    
    .hero {
        min-height: 50vh;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Enhanced testimonials for about page */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--warm-white);
}

/* About page specific styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about-image {
    text-align: center;
}

.founder-headshot {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-text {
    padding-top: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .founder-headshot {
        max-width: 250px;
    }
}

/* Map Section Styles */
.map-section {
    background: var(--warm-white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

#destinations-map {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid #d4af37;
}

/* Custom Map Markers */
.custom-marker {
    background: #2d4f3f;
    border: 2px solid #d4af37;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.custom-marker:hover {
    transform: scale(1.2);
    background: #d4af37;
    border-color: #2d4f3f;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Custom Popup Styling */
.custom-popup {
    background: rgba(45, 79, 63, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 0;
    max-width: 300px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    animation: popup-appear 0.3s ease-out;
}

.popup-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

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

.custom-popup:hover .popup-image img {
    transform: scale(1.05);
}

.popup-content {
    padding: 1rem;
    color: #f2f0eb;
}

.popup-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
    font-weight: 600;
}

.popup-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    color: #f2f0eb;
}

@keyframes popup-appear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mapbox Popup Overrides */
.mapboxgl-popup-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.mapboxgl-popup-tip {
    display: none !important;
}

/* Responsive map styles */
@media (max-width: 768px) {
    .map-container {
        padding: 0 1rem;
    }
    
    #destinations-map {
        height: 400px;
    }
    
    .map-header {
        margin-bottom: 2rem;
    }
}

/* Responsive styles for trips page */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .event-carousel {
        height: 350px;
    }
    
    .event-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 900px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-card-large {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .event-carousel {
        height: 300px;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
    
    .event-meta {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .events-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .event-card-large {
        border-radius: 6px;
    }
    
    .event-carousel {
        height: 250px;
    }
    
    .event-carousel-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .event-content {
        padding: 1.25rem;
    }
    
    .event-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .event-date, .event-location {
        font-size: 0.9rem;
    }
    
    .event-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .event-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Map section mobile adjustments */
    .map-section {
        padding: 2rem 0;
    }
    
    .map-header {
        margin-bottom: 1.5rem;
    }
    
    .map-header h2 {
        font-size: 1.8rem;
    }
    
    .map-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .events-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .event-carousel {
        height: 200px;
    }
    
    .event-content {
        padding: 1rem;
    }
    
    .event-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .event-meta {
        margin-bottom: 0.5rem;
    }
    
    .event-date, .event-location {
        font-size: 0.85rem;
    }
    
    .event-description {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .event-cta {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    /* Map section small mobile adjustments */
    .map-section {
        padding: 1.5rem 0;
    }
    
    .map-header h2 {
        font-size: 1.6rem;
    }
    
    .map-header p {
        font-size: 0.9rem;
    }
    
    #destinations-map {
        height: 300px;
    }
}

@media (max-width: 360px) {
    .section {
        padding: 1.5rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .event-carousel {
        height: 180px;
    }
    
    .event-content {
        padding: 0.75rem;
    }
    
    .event-title {
        font-size: 1.1rem;
    }
    
    .event-description {
        font-size: 0.85rem;
    }
    
    .event-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    #destinations-map {
        height: 250px;
    }
} 
