/* About and Features Page Styles */

/* Page Background */
.about-page,
.features-page {
    background: #000;
    min-height: 100vh;
    color: #fff;
}

body {
    background: #000;
}

/* About Page Header */
.about-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 140, 0, 0.3));
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    background-image: url('https://fitnesszoneynr.com/images/equipment1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 140, 0, 0.2));
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
}

.about-logo {
    height: 120px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 5px 15px rgba(255, 140, 0, 0.5));
}

.about-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-subtitle {
    font-size: 1.5rem;
    color: #ff8c00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Features Page Header */
.features-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 140, 0, 0.3));
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    background-image: url('https://fitnesszoneynr.com/images/equipment1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.features-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 140, 0, 0.2));
    z-index: 0;
}

.features-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.features-subtitle {
    font-size: 1.5rem;
    color: #ff8c00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #000, #1a1a1a);
}

.about-main-content {
    margin-bottom: 4rem;
}

.about-text-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.owner-title {
    font-size: 2rem;
    color: #ff8c00;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.owner-title strong {
    color: #fff;
}

/* Highlights Section */
.highlights-section {
    margin: 4rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    background: rgba(255, 140, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    border-color: #ff8c00;
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.3rem;
    color: #ff8c00;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-item p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 15px;
    margin-top: 4rem;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 900;
}

.cta-section p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Features Grid Section */
.features-grid-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #000, #1a1a1a);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 140, 0, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
    border-color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-name {
    font-size: 1.5rem;
    color: #ff8c00;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

/* Features CTA Section */
.features-cta {
    text-align: center;
    padding: 4rem 0;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 15px;
    margin-top: 4rem;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.features-cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 900;
}

.features-cta p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Active Navigation Link */
.nav-menu li a.active {
    color: #ff8c00;
}

.nav-menu li a.active::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-title,
    .features-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle,
    .features-subtitle {
        font-size: 1.2rem;
    }
    
    .about-logo {
        height: 80px;
    }
    
    .highlights-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2,
    .features-cta h2 {
        font-size: 2rem;
    }

    .special-offers-grid {
        grid-template-columns: 1fr;
    }

    .special-programs-list {
        gap: 1.5rem;
    }
}

/* Special Offers Section for Features Page */
.special-offers-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a1a, #000);
}

.special-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.special-offer-card {
    background: rgba(255, 140, 0, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.special-offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
    border-color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
}

.offer-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.offer-title {
    font-size: 1.5rem;
    color: #ff8c00;
    margin-bottom: 1rem;
    font-weight: 700;
}

.offer-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Special Programs Section for About Page */
.special-programs-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #000, #1a1a1a);
}

.special-programs-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.program-item {
    background: rgba(255, 140, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: all 0.3s ease;
}

.program-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
    border-color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
}

.program-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.program-content {
    flex: 1;
}

.program-content h3 {
    font-size: 1.5rem;
    color: #ff8c00;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.program-content p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .program-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .program-icon {
        margin-bottom: 1rem;
    }

    .program-content h3 {
        font-size: 1.3rem;
    }
}
