/*=== Custom Styles for Tidal Blade Page ===*/

/* Fade-in animation effect */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image styling and hover effect */
.tidal-blade-design, 
.additive3d-image, 
img.img-rounded {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

/* Image caption text styling */
figcaption.caption-text {
    font-size: 1.8rem !important;
    line-height: 1.4;
}

/* Paragraph text styling */
.content p {
    font-size: 18px;
}

/* General section styling */
.landing-page-section {
    margin-bottom: 15px !important;
    padding-top: 15px !important;
}

/* Removes top padding from ONLY the first section to fix video spacing */
.first-section {
    padding-top: 0 !important;
}

/* Main heading (H1) styling */
h1 {
    padding-top: 20px;
    margin-top: 50px;
}

/* NEW: Style for the sub-heading below H1 */
.sub-heading {
    font-size: 1.5rem;
    font-weight: 400;
    color: #555;
    max-width: 800px;
    margin: 10px auto 0 auto;
    line-height: 1.5;
}

/* Responsive 16:9 video wrapper */
.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    max-width: 100%;
}

/* Style for alternating grey background sections */
.section-bg-grey {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding-top: 30px !important;
    padding-bottom: 20px !important;
}