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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.7;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.social-link {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: #000;
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100vw;
    right: 100vw;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    width: 100vw;
}

.mobile-menu.active::before {
    left: 0;
    right: 0;
    opacity: 1;
    pointer-events: auto;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .logo img {
    height: 40px;
}

.menu-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.menu-close:hover {
    opacity: 0.7;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
    padding: 0.5rem 0;
}

.mobile-nav-link:hover {
    opacity: 0.7;
}

.mobile-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-video--desktop {
    display: block;
}

.hero-video--mobile {
    display: none;
}

/* Smooth mask for desktop - creates gradient edges */
.hero-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Desktop mask effect */
@media (min-width: 1025px) {
    .hero-mask {
        background:
            linear-gradient(90deg,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 0.98) 2%,
                rgba(0, 0, 0, 0.95) 4%,
                rgba(0, 0, 0, 0.9) 6%,
                rgba(0, 0, 0, 0.8) 8%,
                rgba(0, 0, 0, 0.7) 10%,
                rgba(0, 0, 0, 0.55) 12%,
                rgba(0, 0, 0, 0.4) 14%,
                rgba(0, 0, 0, 0.25) 16%,
                rgba(0, 0, 0, 0.15) 18%,
                rgba(0, 0, 0, 0.08) 20%,
                rgba(0, 0, 0, 0.03) 22%,
                rgba(0, 0, 0, 0) 25%,
                rgba(0, 0, 0, 0) 75%,
                rgba(0, 0, 0, 0.03) 78%,
                rgba(0, 0, 0, 0.08) 80%,
                rgba(0, 0, 0, 0.15) 82%,
                rgba(0, 0, 0, 0.25) 84%,
                rgba(0, 0, 0, 0.4) 86%,
                rgba(0, 0, 0, 0.55) 88%,
                rgba(0, 0, 0, 0.7) 90%,
                rgba(0, 0, 0, 0.8) 92%,
                rgba(0, 0, 0, 0.9) 94%,
                rgba(0, 0, 0, 0.95) 96%,
                rgba(0, 0, 0, 0.98) 98%,
                rgba(0, 0, 0, 1) 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 2rem;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Us Section */
.about {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 20%, #2a2a2a 50%, #1a1a1a 80%, #000000 100%);
    padding: 6rem 0;
    color: #fff;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
    align-items: center;
}

.about-text {
    color: #a0a0a0;
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
}

.about-stats {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #fff;
}

.cta-button {
    display: block;
    margin: 0 auto 4rem;
    padding: 1.125rem 3rem;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    width: fit-content;
}

.cta-button:hover {
    background-color: #fff;
    color: #000;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    aspect-ratio: 6/6;
    overflow: hidden;
    border-radius: 12px;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Our Dogs Section */
.dogs {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 20%, #2a2a2a 50%, #1a1a1a 80%, #000000 100%);

    padding: 6rem 0 4rem;
    color: #fff;
    overflow: hidden;
}

.dogs-header {
    margin-bottom: 4rem;
}

.dogs-header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.dogs-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    position: relative;
    padding-right: 3rem;
}

.dogs-title::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 120%;
    background-color: #fff;
}

.dogs-description {
    color: #a0a0a0;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Carousel */
.carousel-wrapper {
    margin-bottom: 4rem;
    overflow: hidden;
}

.carousel {
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    /* animation-play-state: paused; */
}

.carousel-item {
    flex-shrink: 0;
    width: 320px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-320px * 7 - 2rem * 7));
    }
}

.dogs-footer {
    text-align: right;
    padding: 0 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

.dogs-footer-text {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* Reserve Section */
.reserve {
    position: relative;
    min-height: 100vh;
    background-image: url('assets/reserve-puppies.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.reserve::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.reserve-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.reserve-content {
    max-width: 600px;
    margin-left: auto;
    color: #fff;
    text-align: right;
}

.reserve-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.reserve-arrow {
    margin-top: 1rem;
    color: #fff;
}

.reserve-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.reserve-button {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.reserve-button:hover {
    background-color: #fff;
    color: #000;
}

/* Social Media Section */
.social-section {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 20%, #1a1a1a 80%, #000000 100%);
    padding: 6rem 0;
    color: #fff;
}

.social-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

.social-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 4rem;
}

.social-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.social-embeds {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.instagram-embed,
.tiktok-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    width: 400px;
    flex: 1;
    min-width: 350px;
}

.instagram-embed iframe,
.tiktok-embed iframe {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 8px;
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.social-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #a0a0a0;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.social-link-large svg {
    flex-shrink: 0;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 3rem 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

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

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-text {
    color: #666;
    font-size: 0.875rem;
}

/* Desktop - Hide Mobile Menu */
@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 2rem;
    }

    .header-left {
        gap: 2rem;
    }

    .nav {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    .logo img {
        height: 50px;
    }

    .social-link svg {
        width: 22px;
        height: 22px;
    }

    .about-container {
        padding: 0 2rem;
    }

    .about {
        padding: 5rem 0;
    }

    .about-content {
        gap: 3rem;
    }

    .about-stats {
        gap: 2rem;
    }

    .about-gallery {
        gap: 1.5rem;
    }

    .dogs {
        padding: 5rem 0 3rem;
    }

    .dogs-header-container {
        padding: 0 2rem;
        gap: 3rem;
    }

    .carousel-item {
        width: 280px;
        height: 350px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-280px * 7 - 2rem * 7));
        }
    }

    .dogs-footer {
        padding: 0 2rem;
    }

    .reserve-container {
        padding: 0 2rem;
    }

    .reserve-content {
        max-width: 500px;
    }

    .reserve-description {
        font-size: 1rem;
    }

    .social-container {
        padding: 0 2rem;
    }

    .social-section {
        padding: 5rem 0;
    }

    .social-grid {
        gap: 3rem;
        grid-template-columns: 1fr;
    }

    .social-embeds {
        gap: 1.5rem;
    }

    .instagram-embed,
    .tiktok-embed {
        min-width: 300px;
        width: 100%;
    }

    .footer-container {
        padding: 0 2rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .header {
        padding: 1.5rem 0;
    }

    .logo img {
        height: 40px;
    }

    .nav {
        display: none;
    }

    .social-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-left {
        gap: 0;
    }

    .about-container {
        padding: 0 1.5rem;
    }

    .about {
        padding: 4rem 0;
    }

    .about-title {
        margin-bottom: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .about-text {
        font-size: 1rem;
        text-align: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .about-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-button {
        margin-bottom: 3rem;
        width: 100%;
        max-width: 100%;
    }

    .dogs {
        padding: 4rem 0 3rem;
    }

    .dogs-header-container {
        padding: 0 1.5rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dogs-title {
        padding-right: 0;
        padding-bottom: 1.5rem;
    }

    .dogs-title::after {
        width: 80px;
        height: 2px;
        left: 0;
        top: auto;
        bottom: 0;
        transform: none;
    }

    .dogs-description {
        font-size: 1rem;
    }

    .carousel-item {
        width: 240px;
        height: 300px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-240px * 7 - 2rem * 7));
        }
    }

    .dogs-footer {
        padding: 0 1.5rem;
    }

    .reserve {
        min-height: 80vh;
        padding: 4rem 0;
    }

    .reserve-container {
        padding: 0 1.5rem;
    }

    .reserve-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .reserve-title {
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .reserve-description {
        margin-bottom: 2.5rem;
    }

    .reserve-button {
        width: 100%;
        max-width: 100%;
    }

    .social-container {
        padding: 0 1.5rem;
    }

    .social-section {
        padding: 4rem 0;
    }

    .social-title {
        margin-bottom: 3rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .social-embeds {
        order: 1;
    }

    .instagram-embed iframe,
    .tiktok-embed iframe {
        max-width: 100%;
        height: 500px;
    }

    .social-info {
        order: 2;
        gap: 2rem;
    }

    .instagram-embed,
    .tiktok-embed {
        width: 100%;
        max-width: 100%;
    }

    .social-description {
        font-size: 1rem;
        text-align: center;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-logo img {
        height: 40px;
    }
}

/* Small Mobile - Video Switch */
@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-video--desktop {
        display: none;
    }

    .hero-video--mobile {
        display: block;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        letter-spacing: 0.05em;
    }

    .scroll-indicator {
        bottom: 2rem;
    }

    .scroll-indicator svg {
        width: 20px;
        height: 20px;
    }

    .about-container {
        padding: 0 1rem;
    }

    .about-text {
        font-size: 0.9375rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-button {
        font-size: 0.9375rem;
        padding: 1rem 2rem;
    }

    .dogs-header-container {
        padding: 0 1rem;
    }

    .dogs-description {
        font-size: 0.9375rem;
    }

    .carousel-item {
        width: 200px;
        height: 250px;
    }

    .carousel-track {
        gap: 1.5rem;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-200px * 7 - 1.5rem * 7));
        }
    }

    .dogs-footer {
        padding: 0 1rem;
    }

    .dogs-footer-text {
        font-size: 1.75rem;
    }

    .reserve {
        min-height: 70vh;
    }

    .reserve-container {
        padding: 0 1rem;
    }

    .reserve-description {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .reserve-button {
        font-size: 0.9375rem;
        padding: 1rem 2.5rem;
    }

    .reserve-arrow {
        width: 32px;
        height: 32px;
    }

    .social-container {
        padding: 0 1rem;
    }

    .social-description {
        font-size: 0.9375rem;
    }

    .social-link-large {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }

    .social-link-large svg {
        width: 28px;
        height: 28px;
    }

    .instagram-embed iframe,
    .tiktok-embed iframe {
        height: 450px;
    }

    .instagram-embed,
    .tiktok-embed {
        min-width: 280px;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer {
        padding: 2rem 0;
    }

    .mobile-menu {
        max-width: 100%;
        padding: 1.5rem;
    }

    .mobile-nav-link {
        font-size: 1.25rem;
    }
}