/* ===================================
   KOSHAYOGA — Shared Stylesheet
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;600;700&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
    background: #f5efe6;
    color: #6b3f1d;
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 1rem;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #6b3f1d;
    line-height: 1.2;
}

p {
    font-size: 1.1rem;
    color: #6b3f1d;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

a { color: inherit; }

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 32px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #a05a2c;
    color: #fff;
    box-shadow: 0 4px 18px rgba(107, 63, 29, 0.32);
}

.btn-primary:hover {
    background: #6b3f1d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(107, 63, 29, 0.38);
}

.btn-outline {
    background: transparent;
    color: #a05a2c;
    border: 2px solid #a05a2c;
}

.btn-outline:hover {
    background: #a05a2c;
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Navbar ---- */
.navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(107, 63, 29, 0.08);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.navbar-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 32px;
}

.navbar-logo { display: flex; align-items: center; }

.navbar-logo-img {
    height: 72px;
    width: auto;
    display: block;
    border-radius: 10px;
    max-width: 120px;
    object-fit: contain;
}

.navbar-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-links li { margin-left: 8px; }

.navbar-links a {
    color: #6b3f1d;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 24px;
    transition: background 0.2s, color 0.2s;
    display: block;
}

.navbar-links a.active {
    background: #f5efe6;
    color: #a05a2c;
}

.navbar-links a:hover,
.navbar-links a:focus {
    background: #f5efe6;
    color: #a05a2c;
    outline: none;
}

/* Hamburger button */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    margin-left: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #6b3f1d;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Contact / Footer Bar ---- */
.contact-bar {
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 8px rgba(107, 63, 29, 0.08);
    padding: 14px 0;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 200;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b3f1d;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.contact-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: currentColor;
}

.contact-link:hover { color: #a05a2c; }

/* ---- Fade-in on Scroll ---- */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* ---- Responsive ---- */
@media (max-width: 700px) {
    .navbar-content { height: 64px; padding: 0 16px; }
    .navbar-logo-img { height: 52px; max-width: 90px; }
    .hamburger { display: flex; }

    .navbar-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 12px 0 20px;
        box-shadow: 0 4px 12px rgba(107, 63, 29, 0.1);
        align-items: flex-start;
    }

    .navbar-links.open { display: flex; }
    .navbar-links li { margin: 0; width: 100%; }

    .navbar-links a {
        font-size: 0.9rem;
        padding: 14px 24px;
        border-radius: 0;
        width: 100%;
    }

    .contact-content { gap: 24px; }
    .contact-link .contact-label { display: none; }
    .contact-link svg { width: 24px; height: 24px; }
}

@media (max-width: 400px) {
    .navbar-content { height: 56px; padding: 0 12px; }
    .navbar-logo-img { height: 44px; max-width: 76px; }
}
