html { scroll-behavior: smooth; }

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

body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    background-color: #ffffff;
    color: #111;
}

.gjs-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.gjs-section {
    padding: 80px 20px;
}

/* NAV */
#iaalnp {
    padding: 20px;
    background-color: rgba(238, 191, 255, 0.9);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.navbar-cnt {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#inh1 {
    color: rgba(0, 0, 0, 1);
    line-height: 1.9em;
    font-size: 28px;
    margin: 0;
}

.navbar-menu-nav {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.nav-links {
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links:hover { color: #F4C2C2; }

.navbar-menu-toggle { display: none; }

/* HERO FIXES (this is the main change) */
.hero {
    /* make the background span the full viewport width */
    width: 100%;
    background-image: url("https://cdn.grapesjs.com/workspaces/cmkbeh05t1yu0ybcchicb32wn/assets/9f92ac37-2feb-482b-b969-ba9eabda8467__homerlookinatstars.jpg");
    background-position: center;
    background-size: cover;              /* important: looks like screenshot two */
    background-repeat: no-repeat;
}

#ihrow {
    /* remove the hard-coded width/margins that create the white gap */
    width: 100%;
    margin: 0;
    padding: 120px 20px 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ihcol {
    width: 100%;
    max-width: 900px;
    text-align: center;
    align-items: center;
}

#ihello {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 10px;
}

#ihtitle {
    font-size: 56px;
    font-weight: 900;
    color: rgba(255, 116, 206, 1);
    margin-bottom: 10px;
}

#ihsub {
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}

#ihdesc {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 0;
    opacity: 0.9;
}

/* GENERAL TYPO */
h1 { font-size: 48px; font-weight: 800; line-height: 1.2; color: #111111; }
h2 { font-size: 36px; font-weight: 700; line-height: 1.3; color: #111111; }
h3 { font-size: 24px; font-weight: 600; line-height: 1.4; color: #111111; }
p  { font-size: 16px; color: #666666; margin-bottom: 15px; }
a  { text-decoration: none; color: inherit; transition: all 0.3s ease; }

/* BUTTONS */
.gjs-link-box {
    display: inline-block;
    padding: 15px 30px;
    color: #FFFFFF;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#iabtn1 {
    margin-right: 15px;
    margin-bottom: 15px;
    background-color: #F4C2C2;
}

#iabtn2 {
    background-color: transparent;
    border: 2px solid #F4C2C2;
    color: #F4C2C2;
    font-weight: 300;
}

#iabtn2:hover {
    background-color: #F4C2C2;
    color: #FFFFFF;
}

/* SERVICES */
#istitle, #iptitle { text-align: center; margin-bottom: 50px; color: #F4C2C2; }

.gjs-plg-flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.gjs-plg-flex-column {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
}

.gjs-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gjs-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* CONTACT */
#icrow { align-items: flex-start; width: 100%; max-width: 520px; margin: 0 auto; }
#icform { width: 100%; }
#icformrow1 { gap: 15px; margin-bottom: 15px; }
#icsubject, #icmessage { width: 100%; font-size: 16px; margin-bottom: 15px; }
#icmessage { margin-bottom: 20px; resize: vertical; }

#icbtn {
    width: 100%;
    padding: 15px 30px;
    background-color: #F4C2C2;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
}

#ifooter {
    background-color: #1a1a1a;
    text-align: center;
    padding: 40px 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .navbar-menu-toggle { display: block; width: 30px; height: 30px; cursor: pointer; }
    .navbar-items-c { display: none; }

    .gjs-plg-flex-row { flex-direction: column; }

    #ihtitle { font-size: 36px; }
    #ihsub { font-size: 20px; }

    h1 { font-size: 36px; }
    h2 { font-size: 28px; }

    .gjs-section { padding-top: 50px; padding-bottom: 50px; }
}
/* === GLOBAL THEME FIXES: fonts + dark background === */

:root{
    --bg: #1b1b1b;        /* dark grey page background */
    --panel: #222222;     /* section/card background */
    --text: #eaeaea;      /* main text on dark */
    --muted: #b8b8b8;     /* secondary text on dark */
    --accent: #F4C2C2;    /* your pink */
}

body{
    background: var(--bg);
    color: var(--text);
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Keep hero text as-is (already white/pink), but fix all other section text */
h1,h2,h3{
    color: var(--text);
}

p{
    color: var(--muted);
}

/* Make your non-hero sections dark like screenshot two */
.gjs-section{
    background: var(--bg);
}

/* Optionally make section “blocks” look like panels (matches your editor look) */
#iabout, #iservices, #iportfolio, #icontact{
    background: var(--bg);
}

#iscnt .gjs-plg-flex-column,
#ipcnt,
#iccnt{
    /* subtle “panel” feeling where appropriate */
}

/* Services boxes: give them the dark card look */
#isbox1, #isbox2, #isbox4, #isbox6{
    background: var(--panel);
    border-radius: 14px;
    padding: 28px 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Make service titles readable on dark */
#isbox1title, #isbox2title, #isbox4title, #isbox6title{
    color: var(--text);
}

#isbox1text, #isbox2text, #isbox4text, #isbox6text{
    color: var(--muted);
}

/* Keep your section headings pink */
#iatitle, #istitle, #iptitle, #ictitle{
    color: var(--accent);
}

/* Buttons: keep your style, but ensure text contrast */
#iabtn1{
    color: #111;
}

#iabtn2{
    color: var(--accent);
    border-color: var(--accent);
}

#iabtn2:hover{
    color: #111;
}

/* Footer already dark; align text */
#ifooter{
    color: var(--muted);
}
