/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    background-color: transparent;
    border: none;
    outline: none;
}

/* Main Hero Container */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;   /* Using standard viewport height */
    min-height: 100vh;
    overflow: hidden;
}

/* Background Layer */
.background-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Picture/Background Intro.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: transparent;
    z-index: 1;
}

/* No CSS-generated text - using background image only */

/* Content Wrapper */
.content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    /* Removed flexbox and padding to prevent conflicts with absolute positioning */
}

/* Left Side Text Content - POSITIONING HANDLED BY INLINE STYLES */
.text-content {
    /* All positioning handled by inline styles */
}

/* TEXT STYLES REMOVED - HANDLED BY EMBEDDED CSS ONLY */

/* Center - Large Dog Image */
.dog-container {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 12;
    height: 100vh;
    /* Removed flex properties to allow inline styles on children to work */
}

.dog-image {
    /* All sizing handled by inline styles to avoid specificity conflicts */
    /* height, object-fit, object-position, display handled by inline styles */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Right Side Social Media */
.social-sidebar {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 15;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Enhanced Video Player */
.video-thumbnail {
    position: absolute;
    bottom: 3rem;
    right: 6rem;
    z-index: 15;
}

.video-preview {
    width: 400px;
    height: 225px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../Picture/Background Page 2.png?v=20250924');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(138, 31, 23, 0.3);
}

.video-preview:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(138, 31, 23, 0.5);
}

.video-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #091c44, #8a1f17);
    opacity: 0.3;
    z-index: 1;
}

.video-play-btn {
    position: relative;
    z-index: 2;
}

.video-play-btn svg {
    /* Clean design - no drop shadows */
}

/* Pagination Dots */
.pagination-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 15;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dog-image {
        /* All sizing handled by inline styles */
    }

    .content-wrapper {
        /* padding removed - handled by inline styles */
    }

    .text-content {
        /* ALL positioning and sizing handled by inline styles */
    }

    /* TEXT STYLES REMOVED - HANDLED BY EMBEDDED CSS */

    .social-sidebar {
        right: 2rem;
    }

    .video-thumbnail {
        right: 2rem;
    }

    .video-preview {
        width: 320px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .background-layer {
        /* Fallback to main background until tablet version is created */
        background-image: url('../Picture/Background Intro.png');
        background-size: cover;
        background-position: center center;
    }

    /* TEXT STYLES REMOVED - HANDLED BY EMBEDDED CSS */

    .dog-image {
        /* All sizing handled by inline styles */
    }

    .text-content {
        /* ALL positioning and sizing handled by inline styles */
    }

    .social-sidebar {
        right: 1rem;
        gap: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .video-thumbnail {
        bottom: 2rem;
        right: 1rem;
        top: auto;
        transform: none;
    }

    .video-preview {
        width: 200px;
        height: 112px;
    }
}

@media (max-width: 480px) {
    .background-layer {
        /* Fallback to main background until mobile version is created */
        background-image: url('../Picture/Background Intro.png');
        background-size: cover;
        background-position: center center;
    }
    /* TEXT STYLES REMOVED - HANDLED BY EMBEDDED CSS */

    .dog-image {
        /* All sizing handled by inline styles */
    }

    .text-content {
        /* ALL positioning and sizing handled by inline styles */
    }
}

/* iOS-specific fix */
@supports (-webkit-touch-callout: none) {
    .background-layer {
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}