/* --- Variables & Reset --- */

:root {
    --primary-pink: #ff69b4;
    --light-pink: #ffe4e1;
    --secondary-black: #111111;
    --text-grey: #666666;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--secondary-black);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    scroll-margin-top: 90px;
}

h1,
h2,
h3,
h4,
h5,
.footer-brand {
    font-family: var(--font-heading);
    font-weight: 700;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 15px;
    background: var(--secondary-black);
    color: var(--white);
    padding: 10px 16px;
    z-index: 2000;
    text-decoration: none;
    border-radius: 4px;
}

.skip-link:focus {
    top: 15px;
}

.eyebrow-text {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-intro {
    max-width: 720px;
}

/* --- Common Components --- */

.section-padding {
    padding: 100px 0;
}

.section-subtitle {
    color: var(--primary-pink);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary-pink);
    margin-bottom: 20px;
}

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

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

/* --- Navbar --- */

.navbar {
    background-color: rgba(17, 17, 17, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--primary-pink) !important;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--white) !important;
    margin-left: 15px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s ease, opacity 0.3s ease;
}

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

/* --- Hero Section --- */

.hero-section {
    position: relative;
    background: url('images/background.png') no-repeat center center / cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.15rem;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */

.btn-custom {
    background-color: var(--primary-pink);
    color: var(--white);
    border: 2px solid var(--primary-pink);
    padding: 14px 35px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-custom:hover,
.btn-custom:focus {
    background-color: transparent;
    color: var(--primary-pink);
}

.btn-outline-light-custom {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-light-custom:hover,
.btn-outline-light-custom:focus {
    background-color: var(--white);
    color: var(--secondary-black);
}

/* --- Features & Icons --- */

.feature-box {
    padding: 20px;
}

.icon-pink,
.fas.fa-tint,
.fas.fa-paw,
.feature-icon {
    font-size: 2rem;
    color: var(--primary-pink);
}

/* --- About Section --- */

.about-img {
    box-shadow: 10px 10px 0 var(--light-pink);
}

/* --- Product Cards --- */

.product-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.product-img-container {
    position: relative;
    overflow: hidden;
}

.product-img {
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.product-title {
    font-family: var(--font-heading);
    font-weight: 700;
}

.price-tag {
    color: var(--primary-pink);
    font-weight: bold;
    font-size: 1.2rem;
    margin: 10px 0;
}

/* --- Testimonials --- */

.testimonial-box {
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    height: 100%;
}

/* --- Training --- */

.training-card {
    background: rgba(255, 255, 255, 0.02);
}

/* --- Gallery Section --- */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

/* --- Video Section --- */

.video-wrapper {
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.3);
    border: 1px solid #dddddd;
    padding: 10px;
    background: #ffffff;
    border-radius: 8px;
}

.ratio iframe {
    border-radius: 4px;
}

/* --- Forms --- */

.form-control {
    border-radius: 0;
    padding: 12px;
    border: 1px solid #dddddd;
    background-color: #f9f9f9;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--primary-pink);
    background-color: #ffffff;
}

.form-select {
    border-radius: 0;
    padding: 12px;
}

/* --- Footer --- */

footer {
    background-color: var(--secondary-black);
    color: var(--white);
    padding: 60px 0;
    border-top: 5px solid var(--primary-pink);
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.social-icons a:hover,
.social-icons a:focus {
    color: var(--primary-pink);
}

/* --- Floating WhatsApp --- */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    background-color: #128c7e;
    transform: scale(1.08);
    color: #ffffff;
}

/* --- Animation Class --- */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Media Queries --- */

@media (max-width: 992px) {
    .navbar-nav {
        padding-top: 1rem;
    }

    .nav-link {
        margin-left: 0;
        padding: 0.65rem 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 80px 0;
    }

    .w-75 {
        width: 100% !important;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}
