/* ===== Merged stylesheet (all three inputs) ===== */

/* Reset / global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font-face declarations (kept) */
@font-face {
    font-family: 'Qilka-Bold - website font';
    src: url('/.fonts/qilka.ttf') format('woff2'),
    url('/.fonts/qilka.ttf') format('truetype');
}

@font-face {
    font-family: 'lemon-milk';
    src: url('/.fonts/lemon_milk.otf') format('woff2');
}

/* Base document styles (merged — preferring the latest body rules while preserving custom fonts) */
body {
    font-family: 'Qilka-Bold - website font', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    /* prefer newest background and colors from the form file */
    background: #fdf6f0;
    color: #333;
    margin: 0;
    padding: 0;
    transition: background 0.4s ease, color 0.4s ease;
}

/* Links — kept consistent */
a {
    font-size: 1.5em;
    color: #000;
    text-decoration: none;
    font-family: 'Qilka-Bold - website font', 'Helvetica Neue', sans-serif;
}

/* ========== Modern fixed navigation (from file 2) ========== */
.modern-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo area (combined rules) */
.nav-logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #eee878;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-1px);
}

.nav-logo img {
    width: 40%;
    height: auto;
    object-fit: contain;
    max-width: none;
}

/* Desktop nav menu (file 2 + leftover tweak from file 1) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: -40px; /* kept from original file 1 where present */
}

/* Individual nav items (file 2) */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.nav-item:hover::before,
.nav-item.active::before {
    opacity: 1;
}

.nav-item:hover {
    color: #bcb41a;
    transform: translateY(-2px);
}

.nav-item.active {
    color: #000000;
    font-weight: 600;
}

.nav-text {
    position: relative;
    z-index: 2;
}

.nav-indicator {
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #f5f5f5 0%, #eee878 100%);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-item.active .nav-indicator {
    width: 24px;
}

/* Additional original navbar (file 1) — kept for compatibility if used */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #eee878;
    padding: 25px 0;
}

.navbar a {
    color: white;
    padding: 14px 20px;
    text-align: center;
}

/* Cart & favorites icons (from file 1) */
.nav-cart,
.nav-fav {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.cart-icon,
.fav-icon {
    width: 60px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.2s ease-in-out;
}

.cart-link:hover .cart-icon,
.nav-link:hover .fav-icon {
    transform: scale(1.1);
}

/* ========== CTA Button (merged) ========== */
.nav-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    position: relative;
    background: linear-gradient(135deg, #eee878 0%, #ffd500 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-width: 100px;
    white-space: nowrap;
}

.cta-button span {
    font-size: 20px;
    padding: 14px 28px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(206, 206, 200, 0.549);
}

.cta-button:active {
    transform: translateY(-1px);
}

.button-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffffff00 0%, #232222 100%);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-button:hover .button-glow {
    opacity: 0.7;
}

/* ===== Center button (YouTube) — from file 1 ===== */
.center-button-container {
    display: flex;
    justify-content: center;
    margin-top: 140px;
}

.center-button {
    font-family: 'lemon-milk', sans-serif;
    font-size: 20px;
    padding: 16px 32px;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.center-button:hover {
    background-color: #333;
}

/* ========== Social icons & wrapper (merged duplicates) ========== */
.social-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

.social-heading {
    font-family: 'Qilka-Bold - website font', sans-serif;
    color: black;
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a svg {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover svg {
    transform: scale(1.1);
}

.social-section {
    display: flex;
    justify-content: center;
    margin: 80px 0 80px;
    padding-right: 90px;
}

/* ========== Hero (merged) ========== */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.hero a {
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
}

/* Demo/content sections from file 2 */
.demo-content {
    margin-top: 70px; /* aligns with .nav height */
    min-height: 200vh;
}

.content-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.content-section p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}

/* Misc / utility from file 1 */
.nav-icons {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.nav-icons a {
    display: flex;
    align-items: center;
}

.nav-icons img {
    width: 50px;
}

/* nav-item text class from mobile version in file 1 */
.nav-item .nav-text {
    font-size: 29px;
}

/* ==== Responsive breakpoints ==== */

/* Tablet / small-desktop */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        height: 60px;
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .modern-nav {
        background: rgba(255, 255, 255, 0.98);
    }

    .demo-content {
        margin-top: 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .hero {
        padding: 2rem 1rem;
    }

    .content-section {
        padding: 2rem 1rem;
    }
}

/* Mobile (<=600px) */
@media (max-width: 600px) {
    .modern-nav {
        padding: 90px 20px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 500px;
        background-color: #eee878;
    }

    .nav-icons {
        display: flex;
        gap: 14px;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .nav-icons a {
        display: flex;
        align-items: center;
    }

    .nav-icons img {
        width: 50px;
    }

    .nav-logo img {
        max-width: 340px;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .nav-item .nav-text {
        font-size: 29px;
    }

    .cta-button {
        font-size: 27px;
        padding: 25px 45px;
        border-radius: 12px;
    }

    .center-button {
        font-size: 24px;
        padding: 24px 48px;
        border-radius: 14px;
    }

    .social-heading {
        font-size: 39px;
        margin-bottom: 60px;
    }

    .social-icons {
        gap: 50px;
        flex-wrap: wrap;
    }

    .social-icons a svg {
        width: 140px !important;
        height: 140px !important;
    }

    body {
        font-size: 20px;
        line-height: 1.7;
        padding: 0 20px;
    }

    a, span, p {
        font-size: 20px;
    }
}

/* Small phones (from file 2) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }

    .logo-link {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        margin-right: 0.5rem;
    }
}

/* ========== Vanilla form styles (newly merged) ========== */
.vanilla-form {
    max-width: 600px;
    margin: 5rem auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.vanilla-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #0a0a0a;
}

.vanilla-field {
    position: relative;
    margin-bottom: 2rem;
}

.vanilla-field input,
.vanilla-field textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0dcd5;
    border-radius: 7px;
    font-size: 1rem;
    background-color: #fdfaf7;
    color: #333;
    transition: border-color 0.3s ease;
}

.vanilla-field label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: transparent;
    padding: 0 0.4rem;
    color: #999;
    font-size: 0.9rem;
    pointer-events: none;
    transition: transform 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}

.vanilla-field input:focus + label,
.vanilla-field input:not(:placeholder-shown) + label,
.vanilla-field textarea:focus + label,
.vanilla-field textarea:not(:placeholder-shown) + label {
    transform: translateY(-1.5rem) scale(0.85);
    color: #000000;
}

.vanilla-form button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ffb86c, #e5d2dd);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 121, 198, 0.4);
    transition: background 0.3s ease;
}

.vanilla-form button:hover {
    background: linear-gradient(135deg, #ffb86c, #ffb86c);
}

.success-message {
    margin-top: 1rem;
    text-align: center;
    color: #000;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.success-message.show {
    opacity: 1;
}

.validation-message {
    font-size: 0.85rem;
    margin-top: 0.3rem;
    text-align: left;
}

/* End of merged stylesheet */


/* Footer styling */
.social-wrapper footer {
  margin-top: 80px;
  background-color: #fff;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 60px 20px;
  text-align: center;
  font-family: 'Qilka-Bold - website font', 'Helvetica Neue', sans-serif;
  font-size: 18px;
  color: #333;
}
