/* ========================================
   FLOTTE LOCKE - SOFT VINTAGE DOG SALON
   Elegant, Warm, Inviting
   ======================================== */

/* ============= COLOR PALETTE - SOFT VINTAGE PALETTE ============= */
:root {
    /* Primary Colors - Soft & Elegant */
    --pink-mist: #D89CBD;
    --vintage-lavender: #753391;
    --lavender-blush: #f5d9ff;
    --petal-pink: #e3029c;
    --flotte-feature: #ffdef5;
    
    /* Neutrals */
    --flotte-white: #FCFCFB;
    --flotte-black: #070002;
    --dark-text: #070002;
    --medium-gray: #5A5A5A;
    --light-gray: #9E9E9E;
    
    /* Background */
    --bg-cream: #f7e0f6;
    --bg-light: #FAF5F7;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(197, 130, 168, 0.15);
    --shadow-md: 0 4px 16px rgba(197, 130, 168, 0.2);
    --shadow-lg: 0 8px 32px rgba(197, 130, 168, 0.25);
    --shadow-hover: 0 12px 40px rgba(197, 130, 168, 0.3);
}

/* ============= GLOBAL STYLES ============= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    color: var(--dark-text);
    background-color: var(--flotte-white);
    line-height: 1.7;
    font-size: 18px;
    overflow-x: hidden;
}

/* ============= TYPOGRAPHY - GOLDEN RATIO SCALE (1.618) ============= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Permanent Marker', cursive;
    font-weight: 400;
    line-height: 1.3;
    color: var(--vintage-lavender);
    margin-bottom: 1rem;
}

/* Golden Ratio: base × 1.618³ = H1 */
h1 {
    font-size: clamp(3rem, 7vw, 4.236rem) !important;
    letter-spacing: 0.02em;
}

/* Golden Ratio: base × 1.618² = H2 */
h2 {
    font-size: clamp(2rem, 5vw, 2.618rem) !important;
    letter-spacing: 0.01em;
}

/* Golden Ratio: base × 1.618 = H3 */
h3 {
    font-size: clamp(1.5rem, 3vw, 1.618rem) !important;
}

p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 1.25rem;
}

.text-accent {
    color: var(--petal-pink);
}

.text-medium-gray {
    color: var(--medium-gray);
}

/* ============= HEADER & NAVIGATION ============= */
header {
    background-color: var(--flotte-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo-text {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--petal-pink);
    letter-spacing: 0.02em;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--petal-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--petal-pink) 0%, var(--vintage-lavender) 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 80%;
}

/* ============= HERO SECTION ============= */
.hero-section {
    background: linear-gradient(135deg, var(--lavender-blush) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(216, 156, 189, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

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

.hero-title {
    color: var(--vintage-lavender);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}

.hero-image img:hover {
    transform: scale(1.02) translateY(-8px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============= BUTTONS ============= */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.01em;
}

/* Fix for flex alignment in buttons */
.btn.flex {
    display: flex;
}

.btn-primary {
    background: linear-gradient(135deg, var(--petal-pink) 0%, var(--vintage-lavender) 100%);
    color: var(--flotte-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--petal-pink);
    border: 2px solid var(--petal-pink);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--petal-pink) 0%, var(--vintage-lavender) 100%);
    color: var(--flotte-white);
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-light {
    background-color: var(--flotte-white);
    color: var(--petal-pink);
}

.btn-light:hover {
    background-color: var(--lavender-blush);
    transform: translateY(-3px);
}

/* ============= CARDS ============= */
.feature-card {
    background-color: var(--flotte-feature);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border-top: 4px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--petal-pink) 0%, var(--vintage-lavender) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-top-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .feature-icon {
        max-width: 70%;
    }
}

.feature-title {
    font-size: clamp(1.5rem, 3vw, 1.618rem) !important;
    color: var(--vintage-lavender);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============= SECTIONS ============= */
.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    color: var(--vintage-lavender);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--petal-pink) 0%, var(--vintage-lavender) 100%);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.125rem;
    color: var(--medium-gray);
}

.bg-cream {
    background-color: var(--bg-cream);
}

.bg-light {
    background-color: var(--bg-light);
}

/* ============= IMAGE GALLERY ============= */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.4s ease;
}

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

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(197, 130, 168, 0.9) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

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

.gallery-overlay-text {
    color: var(--flotte-white);
    font-weight: 600;
    font-size: 1.125rem;
}

/* ============= INFO SECTION ============= */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.info-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197, 130, 168, 0.15) 0%, transparent 100%);
    pointer-events: none;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.info-content h2 {
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    margin: 2rem 0;
}

.info-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--medium-gray);
    font-size: 1.0625rem;
}

.info-list li::before {
    content: '🐾';
    position: absolute;
    left: 0;
    font-size: 1.25rem;
}

/* ============= CTA SECTION ============= */
.cta-section {
    background: linear-gradient(135deg, var(--petal-pink) 0%, var(--vintage-lavender) 100%);
    color: var(--flotte-white);
    border-radius: 32px;
    padding: 5rem 3rem;
    text-align: center;
    margin: 4rem auto;
    max-width: 1200px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--flotte-white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
}

/* ============= FOOTER ============= */
footer {
    background-color: var(--flotte-black);
    color: var(--light-gray);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--flotte-white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: var(--light-gray);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--petal-pink);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9375rem;
}

/* ============= CONTACT FORM ============= */
.contact-form {
    background-color: var(--flotte-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.9375rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--lavender-blush);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    transition: all 0.3s ease;
    background-color: #FAFAFA;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--petal-pink);
    background-color: var(--flotte-white);
    box-shadow: 0 0 0 3px rgba(197, 130, 168, 0.15);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============= COOKIE BANNER ============= */
.cookie-banner {
    background-color: var(--flotte-black);
    color: var(--flotte-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.cookie-banner .btn {
    padding: 0.75rem 2rem;
}

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 1024px) {
    .info-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        max-width: 70%;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .cta-section {
        padding: 3rem 2rem;
        margin: 2rem 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
}

/* ============= UTILITY CLASSES ============= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 1.5rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

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

.animate-slide-up {
    animation: slideInUp 0.6s ease-out;
}

/* ============= SMOOTH SCROLLING ============= */
html {
    scroll-behavior: smooth;
}

/* ============= SELECTION ============= */
::selection {
    background-color: var(--petal-pink);
    color: var(--flotte-white);
}
