/* About Page Styles */

body {
    background-color: #2c2c2c;
    color: #fff;
    padding-top: 50px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Navigation styling to match journal */
.navbar-inverse {
    background-color: #1a1a1a;
    border-color: #000;
}

.navbar-inverse .navbar-brand {
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 18px;
}

.navbar-inverse .navbar-nav > li > a {
    color: #888;
    font-weight: 300;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #fff;
    background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #000;
}

/* Hero image section */
.hero-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

/* Main content area */
.about-main {
    padding: 40px 0;
}

/* Content area */
.about-content {
    background-color: #363636;
    border-radius: 4px;
    padding: 30px;
    line-height: 1.8;
    font-size: 16px;
}

.about-content p {
    margin-bottom: 20px;
    color: #ccc;
}

.about-content a {
    color: #6db3f2;
    text-decoration: none;
}

.about-content a:hover {
    color: #8bc4f7;
    text-decoration: underline;
}

.about-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 10px 0;
}

.about-content h3, .about-content h4 {
    color: #fff;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Extra content sections */
.about-extras {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #4a4a4a;
}

.about-section {
    margin-bottom: 40px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h3 {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

/* Feature cards grid */
.site-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #404040 0%, #353535 100%);
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 1px solid #4a4a4a;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #4a4a4a 0%, #3d3d3d 100%);
    text-decoration: none;
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.feature-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}

.feature-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .site-features {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 16px;
    }
    
    .feature-icon {
        font-size: 24px;
    }
}

/* Gallery section */
.about-gallery {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.about-gallery h3 {
    font-size: 24px;
    font-weight: 300;
    color: #888;
    margin-bottom: 20px;
}

.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-thumbs a {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.gallery-thumbs a:hover {
    transform: scale(1.05);
}

.gallery-thumbs img {
    display: block;
    width: auto;
    height: 80px;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-image {
        height: 300px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-image {
        height: 250px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content {
        bottom: 20px;
        padding: 0 20px;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .gallery-thumbs img {
        height: 60px;
    }
}
