




/* code finser */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.nav-menu {
    display: flex;
    gap: 30px;

    background: rgb(255, 255, 255);

    padding: 15px 30px;

    border-radius: 50px;

    box-shadow: 0 8px 20px #caf7ff;

    list-style: none;

}

.nav-menu li {
    padding: 10px 25px;

    border-radius: 30px;

    cursor: pointer;

    font-weight: 500;
}

.nav-menu .active {
    background: #53b6c7;
    color: white;
}

.nav-menu li:hover {
    background: #b0f3ff;
    color: rgb(0, 0, 0);

    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(83, 182, 199, 0.4);
   
}
/* HERO SECTION */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 80px 10%;

    min-height: 80vh;
}

/* TEXT */

.hero-text h1 {
    font-size: 70px;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.hero-text span {
    color: lch(69.05% 29.54 215.97);
}

.hero-text h2 {
    margin-top: 15px;

    font-size: 28px;

    color: #666;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* BUTTON */

.btn {
    margin-top: 40px;

    padding: 15px 40px;

    font-size: 18px;

    border: none;

    border-radius: 30px;

    background: #53b6c7;

    color: white;

    cursor: pointer;

    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}


/* IMAGE */

.hero-image img {
    width: 420px;
    max-width: 100%;
}


/* MOBILE RESPONSIVE */

@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text h2 {
        font-size: 22px;
    }

    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }

    .nav-menu {
        gap: 10px;
        padding: 10px 15px;
    }

}




/* Long vide section */
.editing-examples-section {
    padding: 40px 20px; 
    padding-top:0px ;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.editing-examples-section .container {
    max-width: 1200px; /* Max width of the content area */
    width: 100%;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
   box-shadow: 0 8px 16px rgba(0, 217, 255, 0.15);
    border: 1px solid #00ddff; /* Subtle light border */
    text-align: center;
}

.editing-examples-section h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
    font-family: sans-serif;
}

.editing-examples-section p {
    color: #666;
    margin-bottom: 70px;
    font-family: sans-serif;
}

.editing-examples-section .button-group {
    margin-bottom: 30px;
}

.editing-examples-section .button {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: #f9f9f9;
    color: #555;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    font-family: sans-serif;
}

.editing-examples-section .button:hover {
    background-color: #e9e9e9;
}

.editing-examples-section .button img {
    margin-right: 5px;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.editing-examples-section .video-grid {
    display: grid;
    /* Changed minmax to allow larger columns. 
       minmax(400px, 1fr) means columns will be at least 400px, 
       but can grow to take available space. 
       This will often result in 2 columns on larger screens and 1 on smaller. */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* New CSS for responsive video embeds */
.editing-examples-section .video-wrapper {
    position: relative;
    width: 100%;
    /* Using 1146x655 aspect ratio: (655 / 1146) * 100% = ~57.155% */
    padding-bottom: 57.155%; /* This creates the responsive height based on the target aspect ratio */
    background-color: #d3d3d3;
    border-radius: 10px;
    overflow: hidden;
}

.editing-examples-section .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Responsive adjustments for the section */
@media (max-width: 900px) { /* Adjust breakpoint if needed for 2-column to 1-column transition */
    .editing-examples-section .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Allow smaller min width on tablets */
    }
}

@media (max-width: 768px) {
    .editing-examples-section h1 {
        font-size: 2em;
    }

    .editing-examples-section p {
        font-size: 0.9em;
    }

    .editing-examples-section .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .editing-examples-section h1 {
        font-size: 1.8em;
    }
    
    .editing-examples-section p {
        font-size: 0.8em;
    }

    .editing-examples-section .button {
        padding: 6px 12px;
        font-size: 0.8em;
    }
    
    .editing-examples-section {
        padding: 20px 10px;
    }

    .editing-examples-section .video-grid {
        grid-template-columns: 1fr; /* Force single column on small mobiles */
    }
}

/* Shorts Section Styling */
.shorts-section {
    background-color: #f8f8f8; /* Changed to a lighter background to emphasize the boxes */
    border-radius: 20px; /* Slightly more rounded than before */
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    /* Added a more pronounced box shadow similar to the "Short-form" tag */
    box-shadow: 0 8px 16px rgba(0, 217, 255, 0.15);
    border: 1px solid #00ddff; /* Subtle light border */
}

/* Shorts Header Styling */
.shorts-header {
    text-align: center;
    margin-bottom: 20px;
}

.shorts-header .shorts-tag {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    padding: 8px 15px;
    font-weight: medium;
    color: #333; /* Darker text for contrast */
    box-shadow: 0 4px 8px rgba(0, 179, 255, 0.1); /* Standard shadow for the tag */
    border: 1px solid #a9a9a9; /* Border similar to your example */
}

.shorts-header .shorts-tag svg {
    margin-right: 5px;
    color: #000000; /* Accent color for the icon */
}

/* Video Grid Layout - 4 COLUMNS ON LARGER SCREENS */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
}

/* Individual Video Container - Updated Border and Shadow */
.video-container {
    background-color: #000;
    border-radius: 12px; /* Slightly more rounded corners for video boxes */
    overflow: hidden;
    position: relative;
    padding-top: 178.14%;
    /* Updated box shadow to be more prominent and match the example style */

    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth hover effects */
}


.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .shorts-section {
        padding: 18px;
        margin: 15px auto;
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .shorts-section {
        padding: 15px;
        margin: 10px;
        border-radius: 15px;
    }
    .shorts-header .shorts-tag {
        padding: 6px 12px;
        font-size: 0.9em;
    }
}

     
        /* CSS for the Centered Thumbnails Section */

    .thumbnails-wrapper {
        position: relative;
        width: 100%;
        max-width: 1200px;
        margin: 30px auto 0 auto;
        padding-top: 30px;
        box-sizing: border-box;
        
    }

    .thumbnails-header {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #ffffff;
        color: #333;
        padding: 8px 20px;
        border-radius: 9999px;
        font-size: 0.85em;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        z-index: 10;
    }

    .thumbnails-header svg {
        width: 16px;
        height: 16px;
        color: #666;
    }

    .thumbnails-container {
        background-color: #ffffff;
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 8px 30px rgba(173, 216, 230, 0.6);
        border: 1px solid rgba(173, 216, 230, 0.4);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        transition: all 0.3s ease-in-out;
        max-width: 100%;
        box-shadow: 0 8px 16px rgba(0, 217, 255, 0.15);
    border: 1px solid #00ddff; 
    }

    .thumbnail-card {
        background-color: #ffffff; /* Card background is white */
        border-radius: 16px;
        aspect-ratio: 760 / 434;
        display: flex; /* Flexbox for centering content inside */
        flex-direction: column; /* Allows content to stack if needed */
        justify-content: center;
        align-items: center;
        font-size: 1.5em;
        font-weight: 600;
        color: #555;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
        cursor: pointer;
        overflow: hidden; /* Ensures image content stays within rounded corners */
        opacity: 0; /* For fade-in animation */
        animation: fadeIn 0.5s ease-out forwards; /* Apply animation */
    }

    .thumbnail-card .image-placeholder {
        width: 100%; /* Fill the card width */
        height: 100%; /* Fill the card height */
        background-color: #f7f7f7; /* Slightly off-white for the "image" */
        display: flex;
        justify-content: center;
        align-items: center;
        color: #ccc; /* Lighter color for the "Image" text inside the placeholder */
        font-size: 1.2em;
        border-radius: 16px; /* Match card border-radius */
    }

    /* Staggered animation delay */
    .thumbnail-card:nth-child(1) { animation-delay: 0.1s; }
    .thumbnail-card:nth-child(2) { animation-delay: 0.2s; }
    .thumbnail-card:nth-child(3) { animation-delay: 0.3s; }
    .thumbnail-card:nth-child(4) { animation-delay: 0.4s; }
    .thumbnail-card:nth-child(5) { animation-delay: 0.5s; }
    .thumbnail-card:nth-child(6) { animation-delay: 0.6s; }
    .thumbnail-card:nth-child(7) { animation-delay: 0.7s; }
    .thumbnail-card:nth-child(8) { animation-delay: 0.8s; }
    .thumbnail-card:nth-child(9) { animation-delay: 0.9s; }

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

   

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .thumbnails-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 600px) {
        .thumbnails-container {
            grid-template-columns: 1fr;
            gap: 16px;
            padding: 16px;
        }

        .thumbnails-header {
            font-size: 0.8em;
            padding: 6px 16px;
        }
    }



/* --- 2. MAIN CONTENT AREA --- */
.content-area {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    flex: 1;                 /* Take remaining height */
    padding: 40px 20px;      /* Spacing around the form */
}

/* --- 3. FORM STYLES --- */
.form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 500px; /* Max width for form */
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f9f9f9;
    outline: none;
    transition: 0.3s;
}

textarea {
    height: 150px;
    resize: none;
}

input:focus, textarea:focus {
    border-color: #0d6efd;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

button {
    width: 100%;
    padding: 15px;
    background-color: #0d6efd; /* Blue */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* =========================================
   RESPONSIVE (Mobile & Tablet)
   ========================================= */
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        font-size: 14px;
    }
    
    .logo {
        margin-bottom: 5px;
    }
}

@media (max-width: 600px) {
    .content-area {
        padding: 20px 10px;
    }

    .form-container {
        padding: 25px 20px;
    }

    h2 {
        font-size: 1.5rem;
    }
}




/* --- 1. logign b --- */

