/* ============================================
   POPPY'S ADOPTION WEBSITE
   Color Scheme: Muted Tones
   Deep Blue: rgb(97,144,153)
   Turquoise: rgb(86,186,204)
   Teal: rgb(133,255,206)
   M.Pink: rgb(255,170,159)
   Red/pink: rgb(204,86,98)
   
   Additional Colors:
   Pale Gold: #C0B283
   Silk: #DCD0C0
   Paper: #F4F4F4
   Charcoal: #373737
   ============================================ */

/* Global Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-blue: rgb(97,144,153);
    --turquoise: rgb(86,186,204);
    --teal: rgb(133,255,206);
    --muted-pink: rgb(255,170,159);
    --red-pink: rgb(204,86,98);
    --pale-gold: #C0B283;
    --silk: #DCD0C0;
    --paper: #F4F4F4;
    --charcoal: #373737;
    --white: #FFFFFF;
}

body {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
    line-height: 1.8;
    background-color: var(--paper);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
}

h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Courgette', cursive;
    font-size: 2rem;
    color: var(--red-pink) !important;
    font-weight: 400;
}

.navbar-nav .nav-link {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    color: var(--charcoal) !important;
    margin: 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.navbar-nav .nav-link.active {
    color: var(--red-pink) !important;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(97,144,153, 0.3), 
        rgba(86,186,204, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-name {
    font-family: 'Courgette', cursive;
    font-size: 6rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
    font-style: italic;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-custom {
    font-family: 'Roboto Condensed', sans-serif;
    background: linear-gradient(135deg, var(--red-pink), var(--muted-pink));
    color: white;
    padding: 14px 45px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    box-shadow: 0 4px 15px rgba(204, 86, 98, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(204, 86, 98, 0.6);
    color: white;
}

.btn-custom-outline {
    font-family: 'Roboto Condensed', sans-serif;
    background: transparent;
    color: white;
    padding: 14px 45px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-custom-outline:hover {
    background: white;
    color: var(--deep-blue);
    transform: translateY(-2px);
}

.btn-cta {
    font-family: 'Roboto Condensed', sans-serif;
    background: var(--pale-gold);
    color: var(--charcoal);
    padding: 16px 50px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 4px 20px rgba(192, 178, 131, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(192, 178, 131, 0.7);
    color: var(--charcoal);
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 100px 0;
}

.section-header {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 15px;
    font-weight: 700;
}

.header-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--red-pink), var(--muted-pink));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.sub-header {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem;
    text-align: center;
    color: var(--deep-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background-color: var(--white);
    padding: 100px 0;
}

.about-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--charcoal);
}

.about-text p {
    margin-bottom: 25px;
}

/* Quick Facts */
.fact-card {
    background: var(--paper);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.fact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--turquoise);
}

.fact-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.fact-card h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--deep-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fact-card p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--charcoal);
    margin: 0;
}

/* What Makes Poppy Special Section */
.special-section {
    background: linear-gradient(135deg, var(--silk), var(--paper));
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--pale-gold);
}

.special-header {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    color: var(--red-pink);
    margin-bottom: 50px;
    font-weight: 700;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.special-item {
    background: white;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--muted-pink);
}

.special-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left-color: var(--red-pink);
}

.special-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    text-align: left;
}

.special-item h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--deep-blue);
    font-weight: 700;
}

.special-item p {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    background: linear-gradient(to bottom, var(--paper), var(--silk));
    padding: 100px 0;
}

.gallery-subtitle {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 30px;
    font-style: italic;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(97,144,153, 0.85), 
        rgba(86,186,204, 0.9));
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-text {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.overlay-text h5 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.overlay-text p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.portfolio-item:hover .overlay-text {
    transform: translateY(0);
}

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

.portfolio-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* ============================================
   WHAT POPPY WANTS MOST SECTION
   ============================================ */
.poppy-wants-section {
    background: linear-gradient(135deg, var(--muted-pink), var(--pale-gold));
    padding: 100px 0;
    position: relative;
}

.poppy-wants-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.poppy-wants-section .container {
    position: relative;
    z-index: 2;
}

.poppy-wants-section .section-header {
    color: var(--charcoal);
}

.poppy-wants-section .header-divider {
    background: linear-gradient(to right, var(--red-pink), var(--charcoal));
}

.wants-content {
    background: white;
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-left: 6px solid var(--red-pink);
}

.wants-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    line-height: 2;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.wants-content p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    font-weight: 600;
    color: var(--red-pink);
    font-size: 1.3rem !important;
    font-style: italic;
}

/* ============================================
   LEARN MORE SECTION
   ============================================ */
.learn-more-section {
    background: linear-gradient(135deg, var(--deep-blue), var(--turquoise));
    padding: 80px 0;
    color: white;
}

.learn-more-section h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.learn-more-section p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background-color: var(--white);
    padding: 100px 0;
}

.contact-subtitle {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 30px;
    font-style: italic;
}

.adoption-form {
    background: var(--paper);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    color: var(--charcoal);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-control {
    font-family: 'Playfair Display', serif;
    padding: 14px 18px;
    border: 2px solid var(--silk);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(86, 186, 204, 0.1);
    outline: none;
}

.form-success {
    background: var(--paper);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--teal);
    color: white;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 4px 15px rgba(133, 255, 206, 0.4);
}

.form-success h3 {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--deep-blue);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.form-success p {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
    font-size: 1.2rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, 
        rgba(204,86,98, 0.9), 
        rgba(255,170,159, 0.9)),
        url('images/poppy-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(204,86,98, 0.85), 
        rgba(255,170,159, 0.85));
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 40px 0;
}

.footer p {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    opacity: 0.9;
    font-size: 1rem;
}

.footer-note {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.95rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .hero-name {
        font-size: 4.5rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .section-header {
        font-size: 2.8rem;
    }

    .cta-title {
        font-size: 2.8rem;
    }
}

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

    .hero-tagline {
        font-size: 1.3rem;
    }

    .section-header {
        font-size: 2.2rem;
    }

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

    .portfolio-item img {
        height: 280px;
    }

    .adoption-form {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-text {
        font-size: 1.2rem;
    }

    section {
        padding: 60px 0;
    }

    .special-section {
        padding: 40px 25px;
    }

    .special-header {
        font-size: 2.2rem;
    }

    .special-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .special-item {
        padding: 30px 20px;
    }

    .wants-content {
        padding: 35px 25px;
    }

    .wants-content p {
        font-size: 1.15rem;
    }

    .highlight-text {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 576px) {
    .hero-name {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section-header {
        font-size: 1.8rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .portfolio-item img {
        height: 250px;
    }

    .btn-custom,
    .btn-custom-outline,
    .btn-cta {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* ============================================
   LIGHTBOX CUSTOMIZATION
   ============================================ */
.lightbox .lb-image {
    border-radius: 10px;
}

.lightbox .lb-caption {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}
