/* About Us Page Styles */

/* Navigation Active State */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.page-hero {
    background: url('../public/banner.webp') center/cover no-repeat;
    padding: 10rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.page-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 1;
    text-shadow: 0 6px 30px rgba(0,0,0,0.4);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.welcome-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5rem;
    letter-spacing: -0.02em;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.project-image .image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%),
                url('/public/img1.jpg') center/cover no-repeat;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.project-image .image-placeholder img{
    width: 100%;
}
.project-image .image-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

.project-text {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.project-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.project-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.project-text p {
    color: #4a5568;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.project-text .disclaimer {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding: 1.25rem;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.stories-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 7rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(32, 201, 151, 0.15) 0%, transparent 50%);
}

.stories-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.story-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text p {
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.video-link {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.story-video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.story-video-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.4);
}

.story-video-link::before {
    content: '▶';
    font-size: 0.9rem;
}

.story-image .image-placeholder {
    width: 100% !important;
    height: 450px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%),
                url('/public/untitled-2.jpg') center/cover no-repeat;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.story-image .image-placeholder img {
  width: 100% !important;
}
.story-image .image-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 600px; */
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.btn-book-now {
    display: inline-block;
    padding: 1.5rem 4.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 1.35rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.35);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 3px solid transparent;
}

.btn-book-now:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.45);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-book-now:active {
    transform: translateY(-2px) scale(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .project-content,
    .story-content {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 7rem 0 5rem;
    }

    .page-hero-title {
        font-size: 3rem;
        letter-spacing: 0.1em;
    }

    .welcome-title {
        font-size: 2.2rem;
        margin-bottom: 3.5rem;
    }

    .welcome-section,
    .stories-section {
        padding: 5rem 0;
    }

    .project-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .project-image .image-placeholder,
    .story-image .image-placeholder {
        height: 350px;
    }

    .project-text {
        padding: 2.5rem;
    }

    .story-text {
        padding: 2.5rem;
    }

    .stories-title {
        font-size: 2.5rem;
    }

    .story-heading {
        font-size: 2rem;
    }

    .project-text h3 {
        font-size: 1.8rem;
    }

    .btn-book-now {
        padding: 1.25rem 3.5rem;
        font-size: 1.2rem;
    }

    .cta-section {
        padding: 5rem 0;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 5rem 0 4rem;
    }

    .page-hero-title {
        font-size: 2.2rem;
        letter-spacing: 0.08em;
    }

    .welcome-section,
    .stories-section {
        padding: 4rem 0;
    }

    .welcome-title {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    .stories-title {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }

    .project-text,
    .story-text {
        padding: 2rem;
    }

    .project-text h3 {
        font-size: 1.5rem;
    }

    .story-heading {
        font-size: 1.6rem;
    }

    .project-text p,
    .story-text p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .project-image .image-placeholder,
    .story-image .image-placeholder {
        height: 280px;
    
    }

    .btn-book-now {
        padding: 1rem 2.5rem;
        font-size: 1.05rem;
    }

    .story-video-link {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 4rem 0;
    }
}
