/* ==========================================
   WAVE FLORAL - SHARED STYLES
   Common styles used across all pages
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    --electric-blue: #0066FF;
    --hot-pink: #FF1493;
    --bubble-pink: #FFB6E8;
    --neon-yellow: #E0FF00;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #666666;
    --light-gray: #f9f9f9;
    --border-gray: #e0e0e0;
}

/* ==========================================
   RESET & BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
.logo-text {
    font-weight: 700;
    color: var(--electric-blue);
    line-height: 0.9;
    letter-spacing: -1px;
}

.flower-icon {
    color: var(--hot-pink);
    font-size: 1em;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
    position: relative;
    top: -0.05em;
}

/* ==========================================
   NAVIGATION BAR
   Consistent navigation across all pages
   ========================================== */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    margin-bottom: 60px;
}

.nav-home {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-home:hover {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: var(--hot-pink);
    text-underline-offset: 4px;
}

.logo-nav {
    font-size: 24px;
    font-weight: 700;
    color: var(--electric-blue);
    letter-spacing: -1px;
    line-height: 0.9;
}

.nav-right {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--electric-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: var(--hot-pink);
    text-underline-offset: 4px;
}

.order-nav-btn {
    background: var(--hot-pink);
    color: white;
    padding: 14px 32px;
    border: none;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 0;
    display: inline-block;
}

.order-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

/* ==========================================
   SECTION HEADERS
   Services page style headers
   ========================================== */
.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    display: inline-block;
    padding: 12px 24px;
    background: white;
    border: 2px solid #1a1a1a;
    box-shadow: 6px 6px 0 var(--electric-blue);
    transition: all 0.2s ease;
    text-transform: lowercase;
}

.section-header h2:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--electric-blue);
}

/* ==========================================
   BUTTONS & CTAs
   ========================================== */
.btn-primary {
    background: var(--electric-blue);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--hot-pink);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,20,147,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--electric-blue);
    padding: 20px 40px;
    border: 2px solid var(--electric-blue);
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--electric-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,102,255,0.3);
}

/* ==========================================
   LINKS & DECORATIVE ELEMENTS
   ========================================== */
a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: var(--hot-pink);
    text-underline-offset: 3px;
}

.highlight {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: var(--hot-pink);
    text-underline-offset: 3px;
}

/* ==========================================
   CARDS & CONTAINERS
   ========================================== */
.card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.service-card h3 {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 400;
    margin-bottom: 20px;
    display: inline-block;
    padding: 12px 24px;
    background: white;
    border: 2px solid #1a1a1a;
    box-shadow: 6px 6px 0 var(--electric-blue);
    transition: all 0.2s ease;
}

.service-card h3:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--electric-blue);
}

/* ==========================================
   FORMS
   ========================================== */
label {
    display: block;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 15px;
    margin-top: 8px;
    font-size: 16px;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,255,0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Desktop text display */
.mobile-text {
    display: none;
}

.desktop-text {
    display: inline;
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .nav-bar {
        display: grid;
        grid-template-areas: 
            "logo logo"
            "back nav";
        gap: 8px;
        padding: 15px 20px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        margin-bottom: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .logo-nav {
        grid-area: logo;
        font-size: 24px;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .nav-home {
        grid-area: back;
        font-size: 14px;
        align-self: center;
    }
    
    .nav-right {
        grid-area: nav;
        gap: 15px;
        justify-content: flex-end;
        align-items: center;
        display: flex;
    }
    
    /* Show/hide mobile vs desktop text */
    .mobile-text {
        display: inline;
    }
    
    .desktop-text {
        display: none;
    }
    
    .nav-home {
        font-size: 14px;
    }
    
    .logo-nav {
        font-size: 20px;
        text-align: center;
    }
    
    .nav-right {
        gap: 15px;
    }
    
    .nav-link,
    .nav-home {
        font-size: 14px;
    }
    
    .order-nav-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 36px;
        padding: 10px 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 15px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nav-bar {
        padding: 12px 15px;
        gap: 6px;
    }
    
    .logo-nav {
        font-size: 20px;
        margin-bottom: 3px;
    }
    
    .nav-home {
        font-size: 13px;
    }
    
    .nav-right {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .order-nav-btn {
        padding: 7px 16px;
        font-size: 13px;
    }
}