:root {
    --primary-color: #ee0673;
    --secondary-color: #45b793;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --font-heading: 'Fredoka', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition-base: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* General Styles */
body {
    font-family: var(--font-body);
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-shadow: none;
    letter-spacing: -0.01em;
}

.section-title {
    color: var(--primary-color);
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-soft {
    background: linear-gradient(135deg, rgba(238, 6, 115, 0.10) 0%, rgba(69, 183, 147, 0.10) 100%) !important;
}

.footer-soft {
    background: linear-gradient(135deg, rgba(238, 6, 115, 0.12) 0%, rgba(69, 183, 147, 0.12) 100%);
    color: rgba(17, 17, 17, 0.92);
}

.footer-soft hr {
    border-color: rgba(0, 0, 0, 0.12) !important;
}

.footer-soft .social-icons a {
    background: rgba(238, 6, 115, 0.10);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-primary-custom:hover {
    background-color: #d10565;
    border-color: #d10565;
    transform: translateY(-3px);
}

.hover-scale {
    transition: transform 0.3s;
}

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

/* Navbar */
.navbar {
    background: rgba(255, 236, 246, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(238, 6, 115, 0.12);
}

@media (min-width: 1400px) {
    .navbar .container {
        max-width: 1140px !important;
    }
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: rgba(17, 17, 17, 0.92) !important;
}

.navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
#hero {
    padding: 120px 0 0;
    min-height: 520px;
    background: url('../images/fundohero.jpg') no-repeat center center/cover;
    z-index: 2;
    overflow: hidden;
}

#hero .text-primary-custom {
    color: rgba(145, 0, 60, 0.85) !important;
}

#hero h1 {
    line-height: 0.95;
    font-weight: 700;
    font-size: clamp(2.6rem, 4.3vw, 4.4rem);
}

#hero .lead {
    opacity: 0.92;
    font-size: clamp(1.1rem, 1.3vw, 1.45rem);
}

.hero-content {
    padding-bottom: 0;
}

.hero-content .lead {
    max-width: 520px;
}

@media (max-width: 991.98px) {
    .hero-content {
        padding-bottom: 0;
    }
}

.hero-content .btn {
    min-width: 220px;
}

#hero .btn-primary-custom {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.96);
    color: var(--primary-color);
}

#hero .btn-primary-custom:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

#hero .btn-outline-light {
    border-width: 2px;
    color: rgba(255, 255, 255, 0.95);
}

#hero .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 1);
}

.hero-dog {
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
    display: block;
    height: auto;
}

@media (max-width: 991.98px) {
    #hero {
        padding: 110px 0 0;
        min-height: 560px;
    }
}

.hero-dog-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 320px;
}

@media (min-width: 992px) {
    .hero-dog-wrap {
        justify-content: flex-end;
        min-height: 380px;
    }
}

.hero-dog-primary {
    width: clamp(240px, 34vw, 560px);
    position: relative;
    z-index: 2;
}

.hero-dog-secondary {
    width: clamp(170px, 22vw, 360px);
    position: absolute;
    right: clamp(160px, 18vw, 240px);
    bottom: 0;
    opacity: 0.55;
    z-index: 1;
}

@media (max-width: 575.98px) {
    .hero-dog-secondary {
        display: none;
    }
}

/* Services Section */
.section-padding {
    padding: 100px 0;
}

#services.section-padding {
    padding-top: 160px;
    z-index: 6;
}

.service-card {
    transition: var(--transition-base);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.service-card .icon-box {
    width: 80px;
    height: 80px;
    transition: var(--transition-base);
}

.bg-primary-light {
    background-color: rgba(238, 6, 115, 0.1);
}

.service-card:hover .icon-box {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

/* Gallery Section */
.gallery-wrapper {
    overflow: hidden;
}

.gallery-item {
    height: 300px; /* Default height */
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

@media (min-width: 768px) {
    .gallery-item {
        height: 50vh; /* Half screen height on desktop */
    }
}

.gallery-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-img-container img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-masonry {
    column-count: 2;
    column-gap: 16px;
}

@media (min-width: 768px) {
    .gallery-masonry {
        column-count: 3;
        column-gap: 18px;
    }
}

@media (min-width: 1200px) {
    .gallery-masonry {
        column-count: 4;
        column-gap: 20px;
    }
}

.gallery-card {
    width: 100%;
    display: block;
    break-inside: avoid;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    position: relative;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.gallery-card:focus-visible {
    outline: 3px solid rgba(233, 30, 99, 0.6);
    outline-offset: 4px;
}

.gallery-card-img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.00) 35%, rgba(0,0,0,0.75) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    transition: opacity 0.25s ease;
    text-align: left;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.gallery-card-meta {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

.gallery-modal-img {
    max-height: 80vh;
    object-fit: contain;
    background: #000;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(233, 30, 99, 0.85); /* Primary color overlay */
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
}

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

/* Marquee Strip */
.marquee-strip {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-weight: 800;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer */
footer {
    font-size: 0.9rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-base);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: #fff !important;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
