:root {
    --primary: #8f595f;
    --primary-dark: #73464c;
    --bg-main: #FAFAF7;
    --bg-light: #FFFFFF;
    --bg-dark: #1A1A1A;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #EAE3D9;
}

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}


h1,
h2,
h3,
.title {
    font-family: 'Playwrite NZ Guides', cursive;
    font-weight: 400;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 8%;
    background: rgba(250, 250, 247, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(143, 89, 95, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo-text {
    font-family: 'Playwrite NZ Guides', cursive;
    color: var(--primary);
    font-size: 1.6rem;
    margin-right: auto;
    margin-left: 1.5rem;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    padding: 0.8rem 8%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(143, 89, 95, 0.15);
    border-bottom: 2px solid rgba(143, 89, 95, 0.4);
}

.site-logo {
    max-height: 60px;
    width: auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.site-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: #fff !important;
}


.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s;
}


.section-padding {
    padding: 8rem 8% 5rem;
}

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

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

.title {
    font-size: 3.5rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-light {
    color: #fff !important;
}

.text-light-muted {
    color: #aaa !important;
}

.mb-4 {
    margin-bottom: 1.5rem;
}


.gold-btn {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(178, 140, 90, 0.2);
}

.gold-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(178, 140, 90, 0.3);
}


.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 120px;
}

.hero-content {
    flex: 1;
    padding-right: 5%;
    max-width: 600px;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.7s ease;
}

.image-wrapper:hover .hero-image {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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


.process-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.process-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    background: var(--bg-main);
    padding: 2rem;
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.4;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.process-image {
    flex: 1;
}

.page-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}


.ig-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.ig-post {
    background: #fff;
    padding: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 350px;
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.ig-post:hover {
    transform: translateY(-5px);
}


.ig-profile-widget {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 450px;
    margin: 0 auto 3rem auto;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ig-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ig-avatar-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ig-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}

.ig-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: #262626;
    font-family: inherit;
}

.ig-stats {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
    color: #262626;
}

.ig-stats span {
    font-weight: 600;
}

.ig-bio {
    font-size: 0.95rem;
    color: #262626;
    line-height: 1.5;
    margin-bottom: 20px;
}

.ig-bio-name {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.ig-follow-btn {
    display: block;
    background-color: #0095f6;
    color: #fff !important;
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.ig-follow-btn:hover {
    background-color: #0077c2;
}


.contact-container {
    display: flex;
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-image-wrapper {
    flex: 1;
}

.contact-shop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: #ddd;
    font-size: 1.1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: white !important;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    font-size: 1rem;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.wa-icon {
    fill: currentColor;
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}


.footer {
    background: #111;
    color: #777;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}


@media screen and (max-width: 992px) {
    .title {
        font-size: 2.8rem;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-image-container {
        justify-content: center;
    }

    .process-container {
        flex-direction: column;
    }

    .process-steps {
        order: 2;
    }

    .process-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-shop-image {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .logo-text {
        font-size: 1rem;
        margin-left: 0.8rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        transition: left 0.4s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .section-padding {
        margin-top: 4rem;
        padding: 5rem 5% 3rem;
    }

    .title {
        font-size: 2.2rem;
    }

    .section-header .title {
        font-size: 2rem;
    }

    .contact-content {
        padding: 2rem 1.5rem;
    }
}