/* About Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #03c6fb 0%, #0099cc 100%);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-pattern {
    width: 350px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/imgs/IMG_4714.JPEG') center/cover;
    border-radius: 18px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 300;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.mission-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #34495e;
}

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

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 1.5rem;
    color: #03c6fb;
}

.value-item span {
    font-weight: 500;
    color: #2c3e50;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.story-date {
    color: #03c6fb;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.story-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.story-achievement {
    background: linear-gradient(135deg, #e8f5fe 0%, #f0f9ff 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #03c6fb;
}

.story-achievement strong {
    color: #2c3e50;
}

.video-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 9/16; /* Vertical aspect ratio for YouTube Shorts */
}

.about-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    border: none;
}

/* Heritage Section */
.heritage-section {
    padding: 6rem 0;
    background: #2c3e50;
    color: white;
}

.heritage-section .section-title {
    color: white;
}

.heritage-section .section-subtitle {
    color: #bdc3c7;
}

.heritage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.heritage-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.heritage-image {
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
}

.scholar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.scholar-image:hover {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.image-placeholder i {
    font-size: 2.5rem;
    color: #03c6fb;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.image-placeholder small {
    font-size: 0.8rem;
    opacity: 0.7;
}

.heritage-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ecf0f1;
}

/* Artisan Section */
.artisan-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.artisan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.artisan-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.artisan-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 3rem;
}

.artisan-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: #03c6fb;
    width: 2rem;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.feature p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.craft-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.craft-item {
    background: linear-gradient(135deg, #03c6fb 0%, #0099cc 100%);
    color: white;
    padding: 2rem 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(3, 198, 251, 0.3);
    transition: transform 0.3s ease;
}

.craft-item:hover {
    transform: translateY(-5px);
}

/* Future Section */
.future-section {
    padding: 6rem 0;
}

.future-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.future-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.expansion-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.announcement-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.3);
}

.announcement-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.announcement-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.announcement-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.notify-btn {
    background: linear-gradient(135deg, #03c6fb 0%, #0284c7 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    min-width: 140px;
    justify-content: center;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 198, 251, 0.3);
}

.notify-btn:active {
    transform: translateY(0);
}

.notify-btn i {
    margin-right: 0.5rem;
}

/* Notification Form Styles */
.notify-form {
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 500;
    color: white;
    font-size: 14px;
}

.input-group {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.phone-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.phone-input:focus {
    outline: none;
    border-color: #03c6fb;
    box-shadow: 0 0 0 3px rgba(3, 198, 251, 0.2);
}

.phone-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .notify-btn {
        width: 100%;
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary {
    background: #03c6fb;
    color: white;
    box-shadow: 0 4px 16px rgba(3, 198, 251, 0.4);
}

.btn-primary:hover {
    background: #0099cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(3, 198, 251, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 1rem;
    }

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

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .mission-values {
        grid-template-columns: 1fr;
    }

    .heritage-images {
        grid-template-columns: 1fr;
    }

    .craft-showcase {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}