/* ============================================
   UEBER UNS - PAGE STYLES
   ============================================ */

/* Import Global Styles */
@import url('../assets/css/global.css');

/* About Page styles found in source styles.css */
.about-hero {
    height: 100vh;
    background-image: url("images/about-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: calc(var(--navbar-height) * -1);
    padding-top: var(--navbar-height);
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.about-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.about-hero-text {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.about-hero-text h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--airbnb-dark);
    line-height: 1.1;
}

.about-hero-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--airbnb-gray);
}

.about-section {
    padding: 80px 0;
}

.about-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 64px;
    color: var(--airbnb-dark);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--airbnb-dark);
}

.about-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--airbnb-gray);
}

.about-values {
    background: var(--airbnb-light-gray);
}

.values-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--airbnb-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--airbnb-dark);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--airbnb-gray);
}
