/*
Theme Name: Light final
Theme URI: https://wordpress.org/themes/light/
Author: Your Name
Author URI: https://yourwebsite.com
Description: A modern, responsive WordPress theme based on the Big Picture template.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: light
Tags: custom-background, custom-colors, custom-menu, featured-images, translation-ready
*/

/* Import the original CSS */
@import url('assets/css/main.css');
@import url('assets/css/noscript.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

/* Remove header padding from body */
html, body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
body.admin-bar {
    margin-top: 32px !important;
}
@media screen and (max-width: 782px) {
    body.admin-bar {
        margin-top: 46px !important;
    }
}

/* Video Background Styles */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
}

#intro {
    position: relative;
    height: 120vh;
    width: 100%;
    background: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Section One Styles */
#one {
    position: relative;
    height: 120vh;
    width: 100%;
    background: none !important;
    overflow: hidden;
}

#one .video-container {
    position: absolute;
    height: 100%;
}

#one .content {
    position: relative;
    z-index: 2;
}

#intro .content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2em;
    transform: translateY(-10%);
    background: none !important;
}

#intro .content header {
    margin-bottom: 1.5em;
}

#intro .content h2, #intro .content p.subtitle {
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96c93d);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    animation: gradientMove 8s ease infinite, fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}
#intro .content h2 {
    animation-delay: 0.3s, 0.3s;
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 0.5em;
    letter-spacing: 1px;
}
#intro .content p.subtitle {
    animation-delay: 0.6s, 0.6s;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 2em;
    letter-spacing: 2px;
}
/* Remove duplicate or conflicting styles */
#intro .content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2em;
    letter-spacing: 2px;
}

#intro .content footer {
    margin-top: 2em;
}

#intro .content .button {
    margin-top: 2em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1.5s;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

#intro .content .button:hover {
    background: #fff;
    color: #000;
}

/* Paint Brush Animation */
@keyframes paintBrush {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #intro .content h2 {
        font-size: 3em;
    }
    
    #intro .content p {
        font-size: 1.4em;
    }
}

@media screen and (max-width: 480px) {
    #intro .content h2 {
        font-size: 2.5em;
    }
    
    #intro .content p {
        font-size: 1.2em;
    }
}

/* Section Two Styles */
#two {
    position: relative;
    height: 120vh;
    width: 100%;
    background: none !important;
    overflow: hidden;
}

#two .video-container {
    position: absolute;
    height: 100%;
}

#two .content {
    position: relative;
    z-index: 2;
}

/* Work Section Styles */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    padding: 4rem;
    max-width: 1800px;
    margin: 0 auto;
}

.work-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.work-item:nth-child(1) { animation-delay: 0.1s; }
.work-item:nth-child(2) { animation-delay: 0.2s; }
.work-item:nth-child(3) { animation-delay: 0.3s; }
.work-item:nth-child(4) { animation-delay: 0.4s; }
.work-item:nth-child(5) { animation-delay: 0.5s; }
.work-item:nth-child(6) { animation-delay: 0.6s; }
.work-item:nth-child(7) { animation-delay: 0.7s; }
.work-item:nth-child(8) { animation-delay: 0.8s; }
.work-item:nth-child(9) { animation-delay: 0.9s; }
.work-item:nth-child(10) { animation-delay: 1s; }
.work-item:nth-child(11) { animation-delay: 1.1s; }
.work-item:nth-child(12) { animation-delay: 1.2s; }

.work-item:hover {
    transform: translateY(-10px);
}

.work-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover .work-image img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.work-item:hover .work-overlay {
    transform: translateY(0);
}

.work-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.work-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    font-family: 'Poppins', sans-serif;
}

@media screen and (max-width: 1200px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        padding: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem;
    }
    
    .work-image {
        height: 250px;
    }
}

#intro .text-container {
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: block !important;
} 