/* Omid About Page Styles */

.page-template-template-about {
    background-color: #000000 !important;
    background-image: none !important;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

body.page-template-template-about, #page, .site {
    background-color: #000000 !important;
}

/* About Hero */
.about-hero {
    position: relative;
    padding: 220px 20px 120px;
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(10,10,10,1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-hero-subtitle {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #BE9666;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 700px;
}

/* About Content */
.about-content-section {
    padding-top: 100px;
    padding-bottom: 120px;
}

.about-image-frame {
    padding: 15px;
    border-radius: 2px;
}

.about-image-inner {
    width: 100%;
    height: 600px;
    background: url('../images/omid-theme-rug-1.jpg') center/cover no-repeat;
    background-color: #12161D;
    border: 1px solid rgba(190, 150, 102, 0.2);
}

.about-content-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #BE9666;
    font-weight: 500;
}

.about-content-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
}

.about-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.about-stat-label {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #BE9666;
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.omid-animate[data-animate="fade-right"] {
    animation: fadeRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.omid-animate[data-animate="fade-left"] {
    animation: fadeLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
