/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

/* About Us Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

/* About Intro Section */
.about-intro {
    background: #f8f5f0;
    padding: 4rem 3rem;
}

.about-intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.about-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Main About Section */
.about-main-section {
    background: #fff;
    padding: 5rem 3rem;
}

.about-main-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.about-text-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.9;
    text-align: justify;
}

.about-image-content {
    position: relative;
}

.about-image-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #c9a961;
    z-index: 0;
}

.about-image-content img {
    position: relative;
    width: 100%;
    height: 500px;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s;
}

.about-image-content:hover img {
    transform: translate(10px, 10px);
}

/* Downloads Section */
.downloads-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 5rem 3rem;
}

.downloads-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.downloads-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    /*background: white;*/
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #c9a961;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.download-btn:hover {
    border-color: #c9a961;
    background: #c9a961;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.2);
}

.download-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.download-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #c9a961;
    margin-bottom: 0.3rem;
}

.download-subtitle {
    font-size: 0.9rem;
    color: #c9a961;
}

.download-subtitle {
    color: #1a1a1a;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-main-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-content::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .about-intro {
        padding: 3rem 2rem;
    }

    .about-intro h2 {
        font-size: 2rem;
    }

    .about-main-section {
        padding: 3rem 2rem;
    }

    .about-text-content h2 {
        font-size: 2rem;
    }

    .about-text-content p {
        font-size: 1rem;
        text-align: left;
    }

    .about-image-content img {
        height: 350px;
    }

    .downloads-section {
        padding: 3rem 2rem;
    }

    .downloads-section h2 {
        font-size: 2rem;
    }

    .download-buttons {
        grid-template-columns: 1fr;
    }

    .download-btn {
        padding: 1.5rem;
    }
}