/* Theme Name: Woodify Theme Author: Woodify Version: 1.0 */

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: #0a0a0a;
}

/* =========================
   BACKGROUND TEXTURE (SUBTLE)
========================= */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* =========================
   CONTAINER (FIX ALIGNMENT)
========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #d4b88a, #bfa37a, #a08555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-line {
  height: 1px;
  width: 60px;
  margin: 30px auto 0;
  background: linear-gradient(90deg, transparent, #bfa37a, transparent);
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary {
  background: #bfa37a;
  color: #000;
}

.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(191,163,122,0.3);
}

.ghost {
  border: 1px solid #bfa37a;
  color: #bfa37a;
}

.ghost:hover {
  background: #bfa37a;
  color: #000;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 30px;
  border: 1px solid rgba(191,163,122,0.4);
  color: #bfa37a;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(191,163,122,0.1);
}


/* ======================================================
   PREMIUM HEADER
====================================================== */

.site-header {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0 32px;
    pointer-events: none;
}

.header-container {
    max-width: 1380px;
    margin: 0 auto;

    height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 26px;

    border: 1px solid rgba(191,163,122,0.12);

    background: rgba(10,10,10,0.55);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border-radius: 24px;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.03);

    pointer-events: auto;
}

/* ======================================================
   LOGO
====================================================== */

.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-image-wrap {
    width: 54px;
    height: 54px;
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(191,163,122,0.18),
            rgba(191,163,122,0.05)
        );

    border: 1px solid rgba(191,163,122,0.16);

    overflow: hidden;
}

.logo-image-wrap img {
    width: 85%;
    height: 85%;
    object-fit: contain;

    filter:
        brightness(1.15)
        contrast(1.08)
        drop-shadow(0 0 10px rgba(191,163,122,0.25));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    color: rgba(191,163,122,0.7);
    margin-bottom: 3px;
}

.logo-text h2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.4px;
}

/* ======================================================
   NAVIGATION
====================================================== */

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    position: relative;

    color: rgba(255,255,255,0.68);

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition: all 0.35s ease;
}

.main-nav a::after {
    content: '';

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0%;
    height: 1px;

    background: #bfa37a;

    transition: width 0.35s ease;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav a:hover::after {
    width: 100%;
}

/* ======================================================
   RIGHT SECTION
====================================================== */

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-cta {
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 26px;

    border-radius: 999px;

    background: linear-gradient(
        135deg,
        #d4b88a,
        #bfa37a
    );

    color: #111;
    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.3px;
    text-transform: uppercase;

    transition: all 0.35s ease;
}

.header-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(191,163,122,0.25);
}

/* ======================================================
   HAMBURGER
====================================================== */

.menu-toggle {
    width: 52px;
    height: 52px;

    border: none;
    outline: none;
    cursor: pointer;

    display: none;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;

    border-radius: 16px;

    background:
        rgba(255,255,255,0.03);

    border: 1px solid rgba(191,163,122,0.12);

    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(191,163,122,0.08);
}

.menu-toggle span {
    width: 20px;
    height: 1.5px;

    background: #fff;

    border-radius: 999px;

    transition: all 0.3s ease;
}

/* ======================================================
   MOBILE MENU
====================================================== */

.mobile-menu-panel {
    position: fixed;
    inset: 0;

    background:
        rgba(5,5,5,0.96);

    backdrop-filter: blur(20px);

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transition: all 0.45s ease;
}

.mobile-menu-panel.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 30px;
}

.mobile-menu-inner a {
    color: #fff;
    text-decoration: none;

    font-size: 28px;
    font-family: 'Playfair Display', serif;

    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.mobile-menu-panel.active .mobile-menu-inner a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-inner a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu-inner a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu-inner a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-inner a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu-inner a:nth-child(5) { transition-delay: 0.32s; }

.mobile-cta {
    margin-top: 14px;

    padding: 16px 28px;

    border-radius: 999px;

    border: 1px solid rgba(191,163,122,0.35);

    color: #bfa37a !important;

    font-size: 13px !important;
    font-family: 'Inter', sans-serif !important;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1180px) {

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {

    .site-header {
        top: 14px;
        padding: 0 14px;
    }

    .header-container {
        height: 74px;
        padding: 0 18px;
        border-radius: 20px;
    }

    .logo-image-wrap {
        width: 46px;
        height: 46px;
    }

    .logo-text h2 {
        font-size: 18px;
    }

    .logo-small {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-inner a {
        font-size: 22px;
    }
}
/* =========================
   ORB 
========================= */
.bg-orb {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 70%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.30; /* VERY SUBTLE */
  pointer-events: none;
}

.orb1 {
  background: #bfa37a;
  top: 15%;
  left: 10%;
}

.orb2 {
  background: #bfa37a;
  bottom: 10%;
  right: 10%;
}

/* =========================
   SECTION BASE
========================= */
section {
  position: relative;
  padding: 100px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ==================================================
   PREMIUM FOOTER
================================================== */

.site-footer {
    position: relative;
    padding: 110px 0 40px;
    margin-top: 120px;
    overflow: hidden;

    /* UPDATED */
    background: rgba(20,20,20,0.92);
    border-top: 1px solid rgba(191,163,122,0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* subtle premium glow */
.site-footer::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(191,163,122,0.05), transparent 70%);
    top: -250px;
    right: -150px;
    filter: blur(100px);
    pointer-events: none;
}

/* soft top highlight */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(191,163,122,0.18),
        transparent
    );
}

/* =========================
   FOOTER TOP
========================= */

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 70px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* =========================
   BRAND
========================= */

.footer-brand h2 {
    font-size: 34px;
    letter-spacing: 4px;
    margin-bottom: 22px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    line-height: 1.9;
    font-size: 15px;
    max-width: 420px;
}

/* =========================
   SOCIAL LINKS
========================= */

.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.footer-socials a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: #bfa37a;
}

/* =========================
   FOOTER LINKS
========================= */

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    margin-bottom: 26px;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #bfa37a;
    padding-left: 6px;
}

/* =========================
   CONTACT
========================= */

.footer-contact-item {
    margin-bottom: 24px;
}

.footer-contact-item span {
    display: block;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-contact-item a,
.footer-contact-item p {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    line-height: 1.8;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-contact-item a:hover {
    color: #bfa37a;
}

/* =========================
   DIVIDER
========================= */

.footer-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(191,163,122,0.18),
        transparent
    );
    margin: 70px 0 30px;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #bfa37a;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1100px) {

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {

    .site-footer {
        padding: 80px 0 30px;
        margin-top: 80px;
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-brand h2 {
        font-size: 28px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 14px;
    }
}