

/* Main content sections */
main {
    background-color: #000000;
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.highlight {
    color: #00e1e8;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.section-title:hover .highlight::after {
    transform: scaleX(1);
}

/* About intro section */
.about-intro {
    padding: 5rem 0;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.profile-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 225, 232, 0.2);
}

.profile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.profile-text {
    flex: 1;
}

.profile-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Philosophy quote section */
.philosophy-section {
    height: 50vh;
    position: relative;
    overflow: hidden;
}

.parallax-quote {
    height: 100%;
    background-image: url('../resources/images/6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-quote blockquote {
    background-color: rgba(0, 0, 0, 0.7);
    border-left: 5px solid #00e1e8;
    padding: 2rem;
    max-width: 80%;
    font-size: 2rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: #ffffff;
}

/* Journey timeline section */
.journey-section {
    padding: 5rem 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #00e1e8;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 3rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #00e1e8;
    border: 4px solid #000000;
    border-radius: 50%;
    z-index: 1;
    top: 15px;
}

.left {
    left: 0;
    padding-right: 40px;
}

.right {
    left: 50%;
    padding-left: 40px;
}

.left::after {
    right: -12px;
}

.right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.9);
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.timeline-content h3 {
    color: #00e1e8;
    margin-bottom: 10px;
}

/* Equipment section */
.equipment-section {
    padding: 5rem 0;
    background-color: #0a0a0a;
}

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

.equipment-item {
    text-align: center;
    padding: 2rem;
    background-color: #101010;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 225, 232, 0.2);
}

.equipment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.equipment-icon.camera {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2300e1e8' viewBox='0 0 24 24'%3E%3Cpath d='M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.equipment-icon.lens {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2300e1e8' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3C/svg%3E");
}

.equipment-icon.tripod {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2300e1e8' viewBox='0 0 24 24'%3E%3Cpath d='M12 3L6 9h12zM9 8v10h2V8H9zm4 0v10h2V8h-2z'/%3E%3Cpath d='M12 19l-3 3h6z'/%3E%3C/svg%3E");
}

.equipment-icon.editing {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2300e1e8' viewBox='0 0 24 24'%3E%3Cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 00-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z'/%3E%3C/svg%3E");
}

.equipment-item h3 {
    margin-bottom: 1rem;
    color: #00e1e8;
}

/* CTA section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../resources/images/9.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.cta-section .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #00e1e8;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
}

.cta-section .btn:hover {
    background-color: #00e1e8;
    color: #000000;
}

/* Reveal animation for sections */
.reveal-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-section.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 992px) {
    .profile-container {
        flex-direction: column;
    }
    
    .parallax-quote blockquote {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item::after {
        left: 15px;
    }
    
    .left::after, .right::after {
        left: 15px;
    }
    
    .right {
        left: 0;
    }
}
