/*
Theme Name: LABEL Luxembourg
Theme URI: https://labelcommunity.com
Author: LABEL Team
Description: Luxembourg Afro-Black Excellence Leaders - Community Platform
Version: 1.0
Tags: community, custom, dark, elegant
*/

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

:root {
  --pink: #EDC3EB;
  --mauve: #B2969A;
  --toffee: #BDA289;
  --dark: #373022;
  --cream: #FAF6F0;
  --white: #ffffff;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:999;
  background: rgba(55,48,34,0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 70px;
  border-bottom: 1px solid rgba(237,195,235,0.2);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; cursor: pointer;
}
.nav-logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.7rem; color: var(--pink); line-height: 1;
}
.nav-logo-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.18em;
  color: var(--toffee); text-transform: uppercase;
  display: block; margin-top: 1px;
}
.nav-links { display: flex; gap: 0.2rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none; font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.4rem 0.75rem; border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.current-menu-item {
  color: var(--pink); background: rgba(237,195,235,0.08);
}
.nav-cta {
  background: var(--pink) !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.1rem !important;
}
.nav-cta:hover { background: var(--mauve) !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  padding-top: 70px;
}
.hero-bg { position: absolute; inset:0; background: var(--dark); }
.hero-bg img {
  width:100%; height:100%; object-fit:cover;
  opacity: 0.45; filter: contrast(1.1) saturate(0.8);
}
.hero-overlay {
  position: absolute; inset:0;
  background: linear-gradient(135deg, rgba(55,48,34,0.85) 0%, rgba(178,150,154,0.3) 60%, rgba(237,195,235,0.1) 100%);
}
.hero-content {
  position: relative; z-index:2;
  max-width: 1200px; margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-block; font-size: 0.6rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--toffee); border: 1px solid var(--toffee);
  padding: 0.35rem 1rem; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem); font-weight: 300;
  color: var(--white); line-height: 1.05; margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--pink); }
.hero-desc {
  font-size: 0.8rem; letter-spacing: 0.08em; line-height: 1.9;
  color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 480px;
}
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; }
.btn-primary {
  background: var(--pink); color: var(--dark); border: none;
  padding: 0.85rem 2rem; font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; transition: all 0.25s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--mauve); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.85rem 2rem; font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }
.hero-visual { position: relative; height: 480px; }
.hero-photo {
  position: absolute; border: 3px solid rgba(237,195,235,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4); overflow: hidden; transition: transform 0.4s;
}
.hero-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-photo:hover { transform: scale(1.03) rotate(0deg) !important; }
.hp1 { width:260px; height:320px; top:0; right:60px; transform: rotate(2deg); }
.hp2 { width:200px; height:250px; bottom:20px; right:0; transform: rotate(-3deg); }
.hp3 { width:180px; height:220px; bottom:60px; right:200px; transform: rotate(1.5deg); }

/* ── STATS ── */
.stats-ribbon {
  background: var(--dark); padding: 2rem 3rem;
  display: flex; justify-content: center; gap: 5rem; flex-wrap: wrap;
  border-top: 1px solid rgba(237,195,235,0.15);
  border-bottom: 1px solid rgba(237,195,235,0.15);
}
.stat { text-align:center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300; color: var(--pink); display: block;
}
.stat-label { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--toffee); }

/* ── SECTIONS ── */
section { padding: 6rem 3rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--mauve); margin-bottom: 0.75rem; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem); font-weight: 300;
  color: var(--dark); line-height: 1.15; margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--mauve); }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 4rem;
}
.about-text p { font-size: 0.85rem; line-height: 2; color: #5a5248; margin-bottom: 1.25rem; }
.about-photo-stack { position: relative; height: 520px; }
.astack { position: absolute; overflow: hidden; border: 3px solid var(--cream); box-shadow: 0 15px 45px rgba(55,48,34,0.2); }
.astack img { width:100%; height:100%; object-fit:cover; display:block; }
.astack-1 { width:320px; height:400px; top:0; left:0; }
.astack-2 { width:240px; height:300px; bottom:0; right:0; border-color: var(--pink); }
.about-quote { margin-top: 2rem; padding: 1.5rem; border-left: 3px solid var(--pink); background: rgba(237,195,235,0.1); }
.about-quote p { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--dark); line-height: 1.6; margin: 0 !important; }

/* ── EVENTS ── */
.events-section { background: var(--dark); }
.events-section .section-title { color: var(--white); }
.events-section .section-label { color: var(--pink); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.event-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(237,195,235,0.15);
  overflow: hidden; transition: transform 0.3s, border-color 0.3s; cursor: pointer;
}
.event-card:hover { transform: translateY(-6px); border-color: var(--pink); }
.event-card-img { height: 220px; overflow:hidden; }
.event-card-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.event-card:hover .event-card-img img { transform: scale(1.06); }
.event-card-body { padding: 1.5rem; }
.event-tag { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--toffee); margin-bottom: 0.5rem; display: block; }
.event-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--white); margin-bottom: 0.5rem; }
.event-meta { font-size: 0.7rem; color: rgba(255,255,255,0.4); }

/* ── GALLERY ── */
.gallery-section { background: #f5eeea; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px; gap: 0.5rem; margin-top: 3rem;
}
.g-item { overflow:hidden; position:relative; }
.g-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; display:block; }
.g-item:hover img { transform: scale(1.06); }
.g-span2 { grid-column: span 2; grid-row: span 2; }
.g-item::after { content: ''; position: absolute; inset:0; background: linear-gradient(to top, rgba(55,48,34,0.5) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; }
.g-item:hover::after { opacity: 1; }

/* ── BUSINESS CARDS ── */
.biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.biz-card { background: var(--white); border: 1px solid rgba(178,150,154,0.2); padding: 2rem; transition: box-shadow 0.3s, transform 0.3s; cursor: pointer; }
.biz-card:hover { box-shadow: 0 20px 50px rgba(55,48,34,0.12); transform: translateY(-4px); }
.biz-name { font-family:'Cormorant Garamond',serif; font-size:1.3rem; margin-bottom:0.3rem; }
.biz-cat { font-size:0.6rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--mauve); margin-bottom:0.75rem; }
.biz-desc { font-size:0.78rem; line-height:1.8; color:#6a6258; }

/* ── BOARD MEMBERS ── */
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem; }
.board-card { background: var(--white); border: 1px solid rgba(178,150,154,0.15); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.board-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(55,48,34,0.12); }
.board-photo { height: 280px; overflow: hidden; background: var(--dark); position: relative; }
.board-photo img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 0.5s; }
.board-card:hover .board-photo img { transform: scale(1.05); }
.board-photo-placeholder {
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--dark) 0%, #5a4a38 100%);
}
.board-photo-placeholder span { font-family:'Cormorant Garamond',serif; font-size:4rem; color:rgba(237,195,235,0.3); }
.board-accent { height: 3px; background: linear-gradient(to right, var(--pink), var(--mauve)); }
.board-body { padding: 1.75rem; }
.board-name { font-family:'Cormorant Garamond',serif; font-size:1.35rem; font-weight:400; color:var(--dark); margin-bottom:0.25rem; }
.board-title { font-size:0.6rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--mauve); margin-bottom:1rem; }
.board-bio { font-size:0.78rem; line-height:1.85; color:#6a6258; margin-bottom:1.25rem; }
.board-socials { display:flex; gap:0.75rem; }
.board-social-link { font-size:0.6rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--toffee); text-decoration:none; border-bottom:1px solid rgba(189,162,137,0.3); padding-bottom:1px; transition:color 0.2s, border-color 0.2s; }
.board-social-link:hover { color:var(--pink); border-color:var(--pink); }

/* ── FORMS ── */
.form-page { background: var(--cream); }
.form-hero { background: var(--dark); padding: 5rem 3rem; position: relative; overflow: hidden; }
.form-hero::before { content:''; position:absolute; top:-100px; right:-100px; width:400px; height:400px; background: radial-gradient(circle, rgba(237,195,235,0.15) 0%, transparent 70%); border-radius:50%; }
.form-hero-inner { max-width:1200px; margin:0 auto; position:relative; z-index:1; }
.form-hero .section-title { color:var(--white); margin-bottom:0.75rem; }
.form-hero p { font-size:0.85rem; color:rgba(255,255,255,0.6); max-width:640px; line-height:1.9; }
.form-body { max-width:860px; margin:4rem auto; padding:0 3rem; }
.form-card { background: var(--white); border: 1px solid rgba(178,150,154,0.2); padding: 3.5rem; box-shadow: 0 10px 40px rgba(55,48,34,0.07); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-bottom:1.5rem; }
.form-group { display:flex; flex-direction:column; gap:0.5rem; margin-bottom:1.5rem; }
.form-group label { font-size:0.6rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--mauve); font-weight:600; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid rgba(178,150,154,0.35);
  background: var(--cream); padding: 0.85rem 1rem;
  font-family:'Josefin Sans',sans-serif; font-size:0.8rem;
  color:var(--dark); outline:none; transition:border-color 0.25s;
  border-radius:0; appearance:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--mauve); background: var(--white); }
.form-group textarea { resize:vertical; min-height:100px; }
.form-section-title {
  font-family:'Cormorant Garamond',serif; font-size:1.5rem;
  font-weight:300; color:var(--dark); margin-bottom:1.5rem;
  margin-top:2rem; padding-bottom:0.75rem;
  border-bottom:1px solid rgba(178,150,154,0.2);
}
.form-section-title:first-child { margin-top:0; }
.checkbox-group { display:flex; flex-wrap:wrap; gap:0.75rem; }
.checkbox-item {
  display:flex; align-items:center; gap:0.5rem;
  padding:0.5rem 1rem; border:1px solid rgba(178,150,154,0.3);
  cursor:pointer; transition:all 0.2s; font-size:0.72rem;
}
.checkbox-item input { width:14px; height:14px; accent-color:var(--mauve); }
.checkbox-item:hover { border-color:var(--mauve); background:rgba(178,150,154,0.05); }
.form-submit {
  background:var(--dark); color:var(--white); border:none;
  padding:1.1rem 3rem; font-family:'Josefin Sans',sans-serif;
  font-size:0.65rem; letter-spacing:0.25em; text-transform:uppercase;
  font-weight:600; cursor:pointer; transition:all 0.25s;
  margin-top:2rem; width:100%;
}
.form-submit:hover { background:var(--mauve); transform:translateY(-2px); }
.form-note { font-size:0.7rem; color:var(--mauve); text-align:center; margin-top:1rem; }
.member-benefits { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin:3rem 0; }
.benefit-card { background:var(--white); border:1px solid rgba(178,150,154,0.2); padding:2rem 1.5rem; text-align:center; }
.benefit-icon { width:48px; height:48px; background:rgba(237,195,235,0.3); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; }
.benefit-icon svg { width:22px; height:22px; stroke:var(--dark); fill:none; }
.benefit-title { font-family:'Cormorant Garamond',serif; font-size:1.1rem; margin-bottom:0.5rem; }
.benefit-desc { font-size:0.72rem; line-height:1.8; color:#7a7068; }

/* ── FAQ ── */
.faq-section { background:var(--dark); }
.faq-section .section-title { color:var(--white); }
.faq-section .section-label { color:var(--pink); }
.faq-list { margin-top:3rem; max-width:760px; }
.faq-item { border-bottom:1px solid rgba(237,195,235,0.15); }
.faq-q {
  padding:1.25rem 0; font-size:0.85rem; letter-spacing:0.05em;
  color:var(--white); cursor:pointer; display:flex;
  justify-content:space-between; align-items:center; transition:color 0.2s;
}
.faq-q:hover { color:var(--pink); }
.faq-icon {
  width:20px; height:20px; border:1px solid rgba(237,195,235,0.3);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  flex-shrink:0; transition:transform 0.3s, background 0.3s;
  font-size:0.8rem; color:var(--pink);
}
.faq-item.open .faq-icon { transform:rotate(45deg); background:var(--pink); color:var(--dark); }
.faq-a {
  font-size:0.8rem; line-height:1.9; color:rgba(255,255,255,0.55);
  max-height:0; overflow:hidden; transition:max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height:200px; padding-bottom:1.25rem; }

/* ── FOOTER ── */
footer { background:var(--dark); padding:4rem 3rem 2rem; border-top:1px solid rgba(237,195,235,0.15); }
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.footer-brand p { font-size:0.75rem; line-height:1.9; color:rgba(255,255,255,0.45); margin-top:0.75rem; max-width:280px; }
.footer-col h4 { font-size:0.6rem; letter-spacing:0.25em; text-transform:uppercase; color:var(--toffee); margin-bottom:1.25rem; }
.footer-col a { display:block; font-size:0.75rem; color:rgba(255,255,255,0.45); text-decoration:none; margin-bottom:0.6rem; transition:color 0.2s; }
.footer-col a:hover { color:var(--pink); }
.footer-bottom { padding-top:2rem; border-top:1px solid rgba(237,195,235,0.1); display:flex; justify-content:space-between; align-items:center; }
.footer-bottom p { font-size:0.65rem; color:rgba(255,255,255,0.3); }

/* ── RESPONSIVE ── */
@media (max-width:900px) {
  .hero-content { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .about-grid { grid-template-columns:1fr; }
  .events-grid { grid-template-columns:1fr 1fr; }
  .biz-grid { grid-template-columns:1fr 1fr; }
  .board-grid { grid-template-columns:1fr 1fr; }
  .gallery-grid { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .g-span2 { grid-column:span 1; grid-row:span 1; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .form-row { grid-template-columns:1fr; }
  .member-benefits { grid-template-columns:1fr; }
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 0rem; }
  .nav-links a { padding: 0.4rem 0.5rem; font-size: 0.58rem; }
}
@media (max-width:600px) {
  .board-grid { grid-template-columns:1fr; }
  .events-grid { grid-template-columns:1fr; }
  .biz-grid { grid-template-columns:1fr; }
  section { padding: 4rem 1.5rem; }
}
/* Footer Styles */
.site-footer {
    background-color: #333; /* Dark background, adjust if you prefer brown */
    color: #fff; /* White text for contrast */
    padding: 40px 20px;
    font-size: 14px;
    line-height: 1.6;
    text-align: center; /* Center text by default */
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    justify-content: space-between;
    gap: 30px; /* Space between columns */
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Distribute columns evenly */
    width: 100%;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1; /* Each column takes equal space */
    min-width: 250px; /* Minimum width for columns before wrapping */
    margin-bottom: 20px;
    text-align: left; /* Align text within columns to the left */
}

.footer-column h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid #555; /* Separator line */
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer-column {
        min-width: unset; /* Remove min-width on small screens */
        width: 100%; /* Full width for columns */
        text-align: center; /* Center text on small screens */
    }
    .footer-widgets {
        flex-direction: column;
        align-items: center;
    }
}

