/* ABOUT PAGE */

.about-hero {
    min-height: 60vh;
}

/* Owners Grid */
.owners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 40px;
    max-width: 900px;
    margin: 60px auto 0;
    gap: 60px;
    border-radius: 50%;   /* circular */
}

.owner-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(12px);
    border-radius: 25px;
    transition: 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    padding: 35px 25px;
}

.owner-card:hover {
    transform: translateY(-10px);
    border: 1px solid #d4af37;
}


/* OWNER IMAGE FIX */

.owner-img {
    width: 220px;              /* smaller tile */
    aspect-ratio: 1 / 1;
    margin: 0 auto;            /* center image */
    overflow: hidden;
    border-radius: 18px;
    border: 2px solid #d4af37;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.15);
}

.owner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.owner-card:hover .owner-img img {
    transform: scale(1.05);
}

.owner-info {
    padding: 25px;
}

.owner-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.owner-role {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Features Section */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s ease;
}

.feature-box:hover {
    background: rgba(212, 175, 55, 0.1);
}


/* Luxury Text Styling */

.section p {
    color: #dcdcdc;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.owner-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.owner-role {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section {
    padding: 100px 8%;
}

.section h2 {
    font-size: 34px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #d4af37;
    margin: 15px auto 0;
}
