/* ═══════════════════════════════════════════════
   INK DESIGN STUDIO — Front Page CSS
   Warm & Welcoming
   ═══════════════════════════════════════════════ */

.ids-home, .ids-home *, .ids-home *::before, .ids-home *::after { margin:0; padding:0; box-sizing:border-box; }
.ids-home {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px; color: #3D3D3D; line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.idsh-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ─── Hero ─── */
.idsh-hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #E8D5D0 0%, #F5EEEC 30%, #FDFBFA 70%, #E8EDE8 100%);
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 80px 24px 60px; position: relative;
}
.idsh-hero-content { position: relative; z-index: 2; max-width: 600px; }
.idsh-hero-logo { max-height: 70px; margin-bottom: 16px; }
.idsh-hero-logotext {
    font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600;
    color: #2C2C2C; letter-spacing: 2px; margin-bottom: 8px;
}
.idsh-hero-tagline {
    font-size: 11px; letter-spacing: 6px; text-transform: uppercase;
    color: #7A7A7A; margin-bottom: 20px;
}
.idsh-hero-sub {
    font-size: 17px; color: #5A5A5A; font-weight: 300; line-height: 1.6;
    margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto;
}
.idsh-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Buttons ─── */
.idsh-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 13px 28px; border-radius: 50px; font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 500; border: none; cursor: pointer;
    transition: all 0.3s ease; text-decoration: none; letter-spacing: 0.3px;
}
.idsh-btn-primary { background: #2C2C2C; color: #fff; }
.idsh-btn-primary:hover { background: #444; transform: translateY(-1px); }
.idsh-btn-outline { background: transparent; border: 1.5px solid #D4B8B0; color: #3D3D3D; }
.idsh-btn-outline:hover { background: #E8D5D0; }
.idsh-btn-whatsapp { background: #2C2C2C; color: #E8D5D0; border-radius: 50px; padding: 13px 28px; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-weight: 500; transition: all 0.3s ease; }
.idsh-btn-whatsapp:hover { background: #444; }
.idsh-btn-full { width: 100%; }

/* ─── Sections ─── */
.idsh-section { padding: 80px 0; }
.idsh-section-alt { background: #FAF6F4; }
.idsh-section-label {
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    color: #C4A87C; font-weight: 600; margin-bottom: 8px;
}
.idsh-heading {
    font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 500;
    color: #2C2C2C; line-height: 1.25; margin-bottom: 18px;
}

/* ─── About ─── */
.idsh-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.idsh-about-text p { margin-bottom: 14px; color: #5A5A5A; font-size: 14.5px; }
.idsh-about-image {
    height: 450px; border-radius: 16px;
    background: linear-gradient(135deg, #E8D5D0, #D4B8B0);
    background-size: cover; background-position: center;
}

/* ─── Numbers ─── */
.idsh-numbers { background: #2C2C2C; padding: 56px 0; }
.idsh-numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.idsh-number-value {
    font-family: 'DM Sans', sans-serif; font-size: 48px; font-weight: 700;
    color: #E8D5D0; line-height: 1; display: inline;
    font-variant-numeric: tabular-nums;
}
.idsh-number-suffix {
    font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 400;
    color: #E8D5D0; display: inline;
}
.idsh-number-label { font-size: 12px; color: #A09A96; margin-top: 4px; letter-spacing: 1px; }

/* ─── Services ─── */
.idsh-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.idsh-service-card {
    background: #fff; border-radius: 14px; padding: 28px 24px;
    border: 1px solid #F0EBE8; transition: all 0.3s ease;
}
.idsh-service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-2px); }
.idsh-service-icon { font-size: 28px; margin-bottom: 14px; }
.idsh-service-card h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 500;
    color: #2C2C2C; margin-bottom: 8px;
}
.idsh-service-card p { font-size: 13.5px; color: #7A7A7A; line-height: 1.6; }

/* ─── Portfolio ─── */
.idsh-portfolio-filters {
    display: flex; gap: 8px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap;
}
.idsh-filter-btn {
    padding: 7px 18px; border-radius: 50px; font-size: 13px; font-weight: 500;
    font-family: 'DM Sans', sans-serif; border: 1px solid #E0D5D0; background: #fff;
    color: #3D3D3D; cursor: pointer; transition: all 0.2s ease;
}
.idsh-filter-btn:hover { background: #F5EEEC; }
.idsh-filter-btn.active { background: #2C2C2C; color: #fff; border-color: #2C2C2C; }

/* Marquee container */
.idsh-portfolio-marquee {
    overflow: hidden; position: relative; margin-bottom: 20px;
}
.idsh-portfolio-marquee-track {
    display: flex; gap: 12px;
    animation: idsMarquee 40s linear infinite;
    width: max-content;
}
.idsh-portfolio-marquee-track:hover { animation-play-state: paused; }
@keyframes idsMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.idsh-marquee-item {
    width: 280px; height: 200px; border-radius: 12px; overflow: hidden;
    flex-shrink: 0; cursor: pointer; position: relative;
}
.idsh-marquee-item img, .idsh-marquee-item video {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.idsh-marquee-item:hover img { transform: scale(1.05); }

/* Grid view */
.idsh-portfolio-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.idsh-portfolio-item {
    border-radius: 12px; overflow: hidden; position: relative;
    cursor: pointer; aspect-ratio: 4/3; background: #F5EEEC;
}
.idsh-portfolio-item img, .idsh-portfolio-item video {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.idsh-portfolio-item:hover img, .idsh-portfolio-item:hover video { transform: scale(1.05); }
.idsh-portfolio-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 50px; height: 50px; border-radius: 50%; background: rgba(0,0,0,0.5);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 18px; pointer-events: none;
}
.idsh-portfolio-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: #fff; padding: 24px 14px 12px; font-size: 13px; font-weight: 500;
}

/* ─── Instagram ─── */
.idsh-ig-handle {
    display: inline-block; font-size: 20px; color: #2C2C2C; text-decoration: none;
    font-weight: 600; padding: 8px 24px; border-radius: 50px;
    border: 1.5px solid #E0D5D0; transition: all 0.2s ease; margin-bottom: 12px;
}
.idsh-ig-handle:hover { background: #E8D5D0; }

/* ─── Contact ─── */
.idsh-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.idsh-contact-items { display: flex; flex-direction: column; gap: 12px; }
.idsh-contact-item {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    background: #FFF9F7; border-radius: 10px; border: 1px solid #F0EBE8;
    font-size: 14px; color: #3D3D3D; text-decoration: none; transition: all 0.2s;
}
.idsh-contact-item:hover { background: #F5EEEC; }
.idsh-contact-icon { font-size: 18px; flex-shrink: 0; }
.idsh-contact-form-card {
    background: #fff; border-radius: 16px; padding: 28px; border: 1px solid #F0EBE8;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.idsh-contact-form-card h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500;
    color: #2C2C2C; margin-bottom: 18px;
}
.idsh-form-input {
    width: 100%; padding: 11px 14px; border: 1.5px solid #F0EBE8; border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 14px; color: #3D3D3D;
    background: #FDFBFA; outline: none; transition: border 0.2s; margin-bottom: 10px;
    -webkit-appearance: none;
}
.idsh-form-input:focus { border-color: #D4B8B0; background: #fff; }
textarea.idsh-form-input { resize: vertical; min-height: 70px; }

/* ─── Footer ─── */
.idsh-footer {
    background: #2C2C2C; padding: 48px 0 32px; text-align: center; color: #A09A96;
}
.idsh-footer-logo { max-height: 40px; margin-bottom: 8px; filter: brightness(10); }
.idsh-footer-logotext {
    font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500;
    color: #E8D5D0; letter-spacing: 1px; margin-bottom: 4px;
}
.idsh-footer-tagline { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: #7A7A7A; margin-bottom: 20px; }
.idsh-footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.idsh-footer-links a { color: #A09A96; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.idsh-footer-links a:hover { color: #E8D5D0; }
.idsh-admin-link { color: #C4A87C !important; font-weight: 500; }
.idsh-footer-copy { font-size: 12px; color: #666; }

/* ─── Lightbox — Full screen ─── */
.idsh-lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999;
    display: none; align-items: center; justify-content: center;
    cursor: pointer;
}
.idsh-lightbox.active { display: flex; }
.idsh-lightbox img { max-width: 95vw; max-height: 92vh; border-radius: 4px; object-fit: contain; }
.idsh-lightbox video { max-width: 95vw; max-height: 92vh; border-radius: 4px; }
.idsh-lightbox-close {
    position: absolute; top: 16px; right: 20px; background: rgba(255,255,255,0.15); border: none;
    color: #fff; font-size: 28px; cursor: pointer; z-index: 10;
    width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.idsh-lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* ─── Mobile ─── */
@media (max-width: 768px) {
    .idsh-hero { min-height: 90vh; padding: 60px 20px 40px; }
    .idsh-hero-logotext { font-size: 30px; }
    .idsh-hero-sub { font-size: 15px; }
    .idsh-heading { font-size: 28px; }
    .idsh-section { padding: 50px 0; }
    .idsh-about-grid { grid-template-columns: 1fr; gap: 28px; }
    .idsh-about-image { height: 280px; }
    .idsh-numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .idsh-number-value { font-size: 36px; }
    .idsh-services-grid { grid-template-columns: 1fr; }
    .idsh-portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .idsh-contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .idsh-hero-btns { flex-direction: column; align-items: center; }
    .idsh-btn-whatsapp { width: 100%; justify-content: center; text-align: center; }
    .idsh-marquee-item { width: 220px; height: 160px; }
    .idsh-contact-items { margin-bottom: 16px; }
}

@media (max-width: 420px) {
    .idsh-portfolio-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
    .idsh-hero-logotext { font-size: 26px; }
    .idsh-number-value { font-size: 30px; }
}
