/* styles.css - Organized & Improved */

/* ===================================
1. Reset & Globals
=================================== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Montserrat', sans-serif;
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
display: flex;
flex-direction: column;
min-height: 100vh;
}

main {
flex: 1;
}

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

/* ===================================
2. Top Bar
=================================== */
.top-bar {
background-color: #2563eb;
color: #fff;
padding: 12px 0;
font-size: 15px;
}

.top-bar-content {
display: flex;
justify-content: flex-start;
gap: 40px;
align-items: center;
}

.contact-item {
display: flex;
align-items: center;
gap: 10px;
}

.contact-item i {
font-size: 16px;
}

.contact-item span {
white-space: nowrap;
}

/* ===================================
3. Navbar
=================================== */
.navbar {
background-color: #e0e6ed;
padding: 30px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo img {
height: 80px;
width: auto;
}

.nav-menu ul {
list-style: none;
display: flex;
}

.nav-menu li {
margin-left: 30px;
}

.nav-menu a {
text-decoration: none;
color: #333;
font-weight: 600;
font-size: 18px;
transition: color 0.3s;
}

.nav-menu a:hover {
color: #2563eb;
}

/* ===================================
4. Hero Section
=================================== */
.hero {
background-color: #2563eb;
background-image: url('assets/hero.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: #fff;
padding: 120px 20px;
text-align: center;
min-height: 80vh;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}

.hero h1 {
font-size: 48px;
margin-bottom: 20px;
text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero p {
font-size: 20px;
max-width: 800px;
margin: 0 auto;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* ===================================
5. Image Section (full-width)
=================================== */
.image-section {
width: 100%;
margin: 60px 0;
overflow: hidden;
}

.image-section img {
width: 100%;
height: auto;
display: block;
object-fit: cover;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}

/* ===================================
6. Instructions Section
=================================== */
.instructions-section {
padding: 80px 0;
background-color: #ffffff;
}

.instructions-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
align-items: center;
}

.instructions-column {
text-align: center;
}

.instructions-column img {
width: 100%;
height: auto;
max-width: 350px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
display: block;
margin: 0 auto;
}
/* ===================================
9. Video and Social Gate
=================================== */
.video-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Gate - Solid blue background with white text */
.video-gate {
    background: #2563eb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: opacity 0.8s ease;
    margin-bottom: 80px;
}

.gate-content {
    padding: 80px 40px;
    text-align: center;
    color: #fff;
}

.gate-content h3 {
    font-size: 38px;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

/* Social Buttons */
.social-buttons-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    min-width: 260px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-btn i {
    font-size: 24px;
}

.facebook { background-color: #1877f2; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.linkedin { background-color: #0a66c2; }

/* Contact Form - Large, clean, white inputs */
.contact-form {
    max-width: 700px;
    margin: 50px auto 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 18px 20px;
    border: none;
    border-radius: 12px;
    background: #ffffff;
    color: #333;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Labeled File Inputs */
.file-input-group {
    gap: 10px;
}

.file-input-group label {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    text-align: left;
}

.file-input-group input[type="file"] {
    padding: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-input-group input[type="file"]::file-selector-button {
    background: #fff;
    color: #2563eb;
    border: none;
    padding: 10px 20px;
    margin-right: 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.file-input-group input[type="file"]::file-selector-button:hover {
    background: #e0e6ed;
}

.file-input-group input[type="file"]:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
}

/* Submit Button */
.submit-btn {
    align-self: center;
    background: #fff;
    color: #2563eb;
    border: none;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    background: #e0e6ed;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* PIN Input Section */
.pin-input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

#pinInput {
    width: 220px;
    padding: 18px;
    font-size: 32px;
    text-align: center;
    border: 3px solid #fff;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    letter-spacing: 12px;
}

#pinInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: normal;
}

#pinInput:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.unlock-button {
    background: #fff;
    color: #2563eb;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unlock-button:hover {
    background: #e0e6ed;
    transform: translateY(-3px);
}

.error-message {
    min-height: 30px;
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
}

/* Videos - Hidden until unlocked */
.videos-grid {
    display: none; /* Shown via JS when PIN is correct */
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.video-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-8px);
}

.video-wrapper video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-title {
    padding: 28px;
    text-align: center;
    font-size: 24px;
    color: #2563eb;
    margin: 0;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .video-section {
        padding: 80px 0;
    }

    .gate-content {
        padding: 60px 20px;
    }

    .gate-content h3 {
        font-size: 32px;
    }

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

    .social-btn {
        min-width: 280px;
    }

    .pin-input-container {
        flex-direction: column;
    }

    .contact-form {
        padding: 0 10px;
    }

    .submit-btn,
    .unlock-button {
        width: 100%;
        max-width: 300px;
    }
}
/* ===================================
8. Footer
=================================== */
.site-footer {
background-color: #ffffff;
color: #333;
padding: 60px 0 40px;
margin-top: auto;
border-top: 1px solid #eee;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-column h4 {
margin-bottom: 20px;
font-size: 18px;
color: #2563eb;
}

.footer-column ul {
list-style: none;
}

.footer-column ul li {
margin-bottom: 10px;
}

.footer-column a {
color: #333;
text-decoration: none;
transition: color 0.3s;
}

.footer-column a:hover {
color: #2563eb;
}

.sub-list {
margin-left: 20px;
margin-top: 10px;
}

.sub-list li {
margin-bottom: 8px;
}

.no-heading {
margin-top: 38px;
}

.contact-info p {
margin-bottom: 15px;
font-size: 15px;
}

.contact-info i {
margin-right: 10px;
color: #2563eb;
width: 20px;
}

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid #eee;
}

.copyright {
margin: 0;
font-size: 14px;
color: #666;
}

/* ===================================
9. Responsive Adjustments
=================================== */
@media (max-width: 992px) {
.instructions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.videos-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.top-bar-content {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.navbar-content {
    flex-direction: column;
    gap: 20px;
}

.nav-menu ul {
    flex-direction: column;
    align-items: center;
}

.nav-menu li {
    margin: 10px 0;
}

.logo img {
    height: 60px;
}

.hero {
    min-height: 70vh;
    padding: 100px 20px;
    background-position: center 35%;
}

.hero h1 {
    font-size: 36px;
}

.hero p {
    font-size: 18px;
}

.instructions-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.instructions-section {
    padding: 60px 0;
}

.videos-grid {
    grid-template-columns: 1fr;
}

.footer-content {
    grid-template-columns: 1fr;
    text-align: center;
}

.sub-list {
    margin-left: 0;
}

.no-heading {
    margin-top: 0;
}

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