/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    overflow: hidden;
    background-color: #000;
}

/* Video Background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
    z-index: 1;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #131313;
    background-image: linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a), 
                      linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.video-container video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.7) contrast(1.1);
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.video-container video.loaded {
    opacity: 1;
}

/* Content Container */
.content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 0 20px;
    text-align: center;
}

/* Logo and Tagline */
.brand {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease-out forwards;
    animation-delay: 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 4.8rem;
    font-weight: 400;
    letter-spacing: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 60%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    position: relative;
    display: inline-block;
}

.logo::after {
    content: "PHOTOGRAPHY";
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.6rem;
    text-align: center;
    font-weight: 300;
    margin-top: 0.2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.4rem;
    margin-bottom: 2rem;
    color: #f1f1f1;
    position: relative;
    padding-bottom: 1.2rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(224, 224, 224, 0.4) 100%);
}

.contact-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.contact-number:hover {
    opacity: 0.8;
}

/* Social Icons */
.social-icons {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 1.2s;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    text-decoration: none;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icon:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon i {
    font-size: 1.3rem;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #fff;
    opacity: 0.9;
    animation: pulseText 2s infinite alternate;
}

.loader-progress {
    width: 100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.loader-progress::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation: progress 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes progress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes pulseText {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
        letter-spacing: 0.8rem;
    }

    .logo::after {
        font-size: 0.8rem;
        letter-spacing: 0.3rem;
        margin-top: 0.1rem;
    }

    .tagline {
        font-size: 0.9rem;
        letter-spacing: 0.2rem;
        margin-bottom: 2.5rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon i {
        font-size: 1.1rem;
    }
}

/* SEO Content styling */
.seo-content {
    display: none;
}