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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #000000;
    color: #e0e0e0;
    overflow-x: hidden;
    position: relative;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.site-header.shrunk {
    padding: 0.5rem 0;
}

.site-header.shrunk .logo {
    height: 50px;
}

.site-header.shrunk .site-name {
    font-size: 1.5rem;
}

.site-header.shrunk .contact-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    transition: all 0.3s ease;
}

.site-name {
    font-size: 2rem;
    font-weight: 600;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Oswald', sans-serif;
    transition: all 0.3s ease;
}

.contact-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Noise Overlay for Gritty Effect */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 48, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: noiseFlicker 0.15s infinite linear alternate;
}

@keyframes noiseFlicker {
    0% { opacity: 0.9; }
    50% { opacity: 0.95; }
    100% { opacity: 0.85; }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000000;
    z-index: 2;
    padding-top: 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    gap: 2rem;
}

.hero-left {
    flex: 0 0 50%;
    position: relative;
    padding-left: 4rem;
    z-index: 3;
    text-align: left;
}

.hero-logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    height: 400px;
    width: 400px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.5));
    animation: logoFloat 4s ease-in-out infinite;
}

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

.main-title {
    font-size: clamp(6rem, 12vw, 16rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    font-family: 'Oswald', sans-serif;
}

.title-line {
    display: block;
    color: #ff6b35;
    position: relative;
}

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

.subtitle-container {
    position: relative;
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #a0a0a0;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.glitch-line {
    height: 2px;
    width: 200px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    position: relative;
    animation: glitchLine 2s infinite;
}

@keyframes glitchLine {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(0.8); }
}

/* Hero Right - Main Image */
.hero-right {
    flex: 0 0 60%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 0;
    position: relative;
}

.main-image-container {
    position: relative;
    width: 120%;
    height: 100vh;
    margin-right: -20%;
}

.main-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, #000000, transparent);
    z-index: 2;
    pointer-events: none;
}

.main-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to left, #000000, transparent);
    z-index: 2;
    pointer-events: none;
}

.main-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: contrast(1.2) brightness(0.9) saturate(0.8);
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

.image-frame {
    display: none;
}

@keyframes frameGlow {
    0% { box-shadow: 0 0 5px #ff6b35; }
    100% { box-shadow: 0 0 20px #ff6b35, 0 0 30px rgba(255, 107, 53, 0.5); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.scroll-arrow span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ff6b35;
    margin: 3px 0;
    animation: arrowMove 2s infinite;
}

.scroll-arrow span:nth-child(2) { animation-delay: 0.2s; }
.scroll-arrow span:nth-child(3) { animation-delay: 0.4s; }

@keyframes arrowMove {
    0%, 100% { opacity: 0.3; transform: translateY(-5px); }
    50% { opacity: 1; transform: translateY(5px); }
}

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

/* Dogs Section */
.dogs-section {
    min-height: 100vh;
    padding: 4rem 2rem;
    background: #000000;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    font-family: 'Oswald', sans-serif;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    margin: 0 auto;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% { box-shadow: 0 0 5px #ff6b35; }
    100% { box-shadow: 0 0 15px #ff6b35, 0 0 25px rgba(255, 107, 53, 0.5); }
}

/* Dogs Grid */
.dogs-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.dogs-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.row-1 {
    justify-content: space-between;
}

.row-2 {
    justify-content: center;
    gap: 3rem;
}

.dog-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    filter: grayscale(0.8) contrast(1.1);
    width: 400px;
    height: 400px;
}


.dog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.dog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(120, 119, 198, 0.2));
    opacity: 0;
    transition: all 0.3s ease;
}


.dog-item:hover {
    transform: translateY(-10px) scale(2.0);
    filter: grayscale(0) contrast(1.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 20;
}


.dog-item:hover .dog-overlay {
    opacity: 1;
}


/* Animation classes applied by JavaScript */
.dog-item.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.dog-item.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.dog-item.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.dog-item.animate-zoom-in {
    animation: zoomIn 0.8s ease-out forwards;
}

.dog-item.animate-rotate-in {
    animation: rotateIn 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    padding: 4rem 2rem;
    background: #000000;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
}

.contact-form {
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.more-info {
    margin-top: 2rem;
}

.more-text {
    font-size: 1.5rem;
    color: #a0a0a0;
    margin-bottom: 1rem;
    font-style: italic;
}

.coming-soon-indicator {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    margin: 0 auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Atmospheric Elements */
.atmospheric-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}


/* Snake Movement Light */
.snake-light {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 107, 53, 1), rgba(255, 107, 53, 0.5));
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(255, 107, 53, 0.8),
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 30px rgba(255, 107, 53, 0.4);
    animation: snakeMovement 12s ease-in-out infinite;
    z-index: 5;
}

@keyframes snakeMovement {
    0% {
        left: 0%;
        top: 20%;
        transform: translateY(0px);
    }
    12.5% {
        left: 15%;
        top: 15%;
        transform: translateY(-20px);
    }
    25% {
        left: 35%;
        top: 25%;
        transform: translateY(15px);
    }
    37.5% {
        left: 55%;
        top: 10%;
        transform: translateY(-30px);
    }
    50% {
        left: 75%;
        top: 30%;
        transform: translateY(20px);
    }
    62.5% {
        left: 100%;
        top: 20%;
        transform: translateY(-10px);
    }
    75% {
        left: 85%;
        top: 60%;
        transform: translateY(25px);
    }
    87.5% {
        left: 25%;
        top: 70%;
        transform: translateY(-15px);
    }
    100% {
        left: 0%;
        top: 20%;
        transform: translateY(0px);
    }
}

/* Color Changing Blob - Fixed Version */
.color-blob {
    position: fixed;
    top: 100px;
    left: 100px;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35, #f7931e);
    background-size: 400% 400%;
    border-radius: 50% 40% 60% 30%;
    z-index: 1;
    filter: blur(8px);
    opacity: 0.8;
    pointer-events: none;
    display: block;
    visibility: visible;
    animation: blobMove 15s ease-in-out infinite, blobMorph 8s ease-in-out infinite, blobColor 6s ease-in-out infinite;
}

@keyframes blobMove {
    0% {
        left: 5%;
        top: 20%;
        transform: translate(0, 0);
    }
    16.66% {
        left: 80%;
        top: 15%;
        transform: translate(-50px, -20px);
    }
    33.33% {
        left: 85%;
        top: 70%;
        transform: translate(-30px, 15px);
    }
    50% {
        left: 15%;
        top: 80%;
        transform: translate(20px, -10px);
    }
    66.66% {
        left: 10%;
        top: 40%;
        transform: translate(-15px, 25px);
    }
    83.33% {
        left: 60%;
        top: 25%;
        transform: translate(10px, -30px);
    }
    100% {
        left: 5%;
        top: 20%;
        transform: translate(0, 0);
    }
}

@keyframes blobMorph {
    0%, 100% {
        border-radius: 50% 40% 60% 30%;
        width: 120px;
        height: 120px;
    }
    25% {
        border-radius: 60% 30% 40% 70%;
        width: 140px;
        height: 100px;
    }
    50% {
        border-radius: 30% 70% 50% 50%;
        width: 100px;
        height: 140px;
    }
    75% {
        border-radius: 70% 50% 30% 60%;
        width: 160px;
        height: 90px;
    }
}

@keyframes blobColor {
    0% {
        background-position: 0% 50%;
        filter: blur(8px) hue-rotate(0deg);
    }
    25% {
        background-position: 100% 50%;
        filter: blur(10px) hue-rotate(90deg);
    }
    50% {
        background-position: 0% 100%;
        filter: blur(12px) hue-rotate(180deg);
    }
    75% {
        background-position: 100% 0%;
        filter: blur(9px) hue-rotate(270deg);
    }
    100% {
        background-position: 0% 50%;
        filter: blur(8px) hue-rotate(360deg);
    }
}



/* Responsive Design */
@media (max-width: 1024px) {
    .hero-left {
        padding-left: 2rem;
    }
    
    .main-image-container {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-left {
        flex: 1;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-right {
        flex: 1;
        justify-content: center;
    }
    
    .main-image-container {
        width: 90%;
        height: 60vh;
        margin-right: 0;
    }
    
    .main-image {
        height: 60vh;
    }
    
    .header-content {
        padding: 0 1rem;
    }
    
    .site-name {
        font-size: 1.2rem;
    }
    
    .logo {
        height: 60px;
    }
    
    .hero-logo {
        height: 200px;
        width: 200px;
    }
    
    .dogs-row {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .dog-item {
        width: 250px;
        height: 250px;
    }
    
    .dog-item:hover {
        transform: translateY(-5px) scale(1.5);
    }
    
    .row-2 {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-left {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .hero-logo {
        height: 150px;
        width: 150px;
    }
    
    .main-image-container {
        width: 95%;
        height: 50vh;
    }
    
    .main-image {
        height: 50vh;
    }
    
    .dog-item {
        width: 180px;
        height: 180px;
    }
    
    .dog-item:hover {
        transform: translateY(-5px) scale(1.3);
    }
    
    .dogs-row {
        gap: 0.5rem;
    }
    
    .contact-content {
        padding: 0 1rem;
    }
}