/* © 2026 GioCombo Studios. */

/* Hero Section */
.hero-section {
    padding-top: 50px; padding-bottom: 80px; text-align: center;
    background: radial-gradient(circle at center top, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
}
.hero-title {
    font-size: 4.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1.5px; color: var(--text-main);
}
.text-gradient {
    background: linear-gradient(90deg, #3b82f6 0%, #0ea5e9 50%, #6366f1 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
    font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-btns { display: flex; justify-content: center; gap: 20px; }
.btn-primary, .btn-secondary {
    padding: 12px 32px; border-radius: 8px; font-weight: 600; font-size: 1rem;
    transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white; border: none; box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5); }
.btn-secondary {
    background: rgba(255, 255, 255, 0.03); color: var(--text-main); border: 1px solid var(--border-color);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }

/* Services Section */
.services-section, .stack-section { padding: 60px 20px; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; font-weight: 700; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card {
    background: #000; border: 1px solid #111; cursor: pointer; transition: 0.3s;
    position: relative; overflow: hidden;
}
.service-card:hover { border-color: var(--accent); box-shadow: 0 0 15px rgba(14, 165, 233, 0.2); }
.card-header {
    display: flex; justify-content: space-between; padding: 10px 15px;
    background: #050505; border-bottom: 1px solid #111;
    font-family: var(--font-mono); font-size: 0.85rem;
}
.srv-name { color: var(--accent); font-weight: 700; }
.srv-code { color: #004d40; }
.card-body {
    height: 180px; display: flex; align-items: center; justify-content: center;
    background: #020202; overflow: hidden; position: relative;
}
.card-body img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: 0.5s; }
.service-card:hover .card-body img { opacity: 1; transform: scale(1.05); }
.icon-placeholder { font-size: 4rem; color: #333; }
.card-footer {
    background: #050505; border-top: 1px solid #111; padding: 10px 15px;
    display: flex; gap: 10px; font-family: var(--font-mono); font-size: 0.75rem; color: #555;
}

/* Stack Section */
.stack-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.card {
    background: var(--bg-card); padding: 35px; border-radius: 16px; border: 1px solid var(--border-color);
    transition: 0.4s; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: var(--glow); }
.card h3 { margin-bottom: 25px; font-size: 1.3rem; display: flex; align-items: center; gap: 12px; }
.card h3 i { color: var(--accent); font-size: 1.4rem; }
.tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tags span {
    background: rgba(255, 255, 255, 0.03); padding: 8px 14px; border-radius: 20px;
    font-size: 0.85rem; color: var(--text-muted); border: 1px solid rgba(255, 255, 255, 0.05); transition: 0.3s;
}
.card:hover .tags span { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); color: #fff; }

/* About Section */
.about-section { padding: 60px 20px 100px; }
.about-card {
    background: linear-gradient(180deg, rgba(13, 18, 36, 0.8) 0%, rgba(2, 4, 16, 0.9) 100%);
    padding: 50px; border-radius: 20px; border: 1px solid var(--border-color); text-align: center;
}
.about-card h3 { font-size: 2.2rem; margin-bottom: 25px; }
.about-card p { color: var(--text-muted); font-size: 1.1rem; max-width: 850px; margin: 0 auto; line-height: 1.8; }

/* Service Modal Specifics */
.modal-content { width: 90%; max-width: 700px; }
.modal-img-container { height: 200px; overflow: hidden; position: relative; border-bottom: 1px solid #222; }
.modal-img-container img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.term-line { margin-bottom: 12px; font-size: 0.95rem; }
.term-val { color: #8892b0; }
.term-status { color: var(--accent); font-weight: 700; margin-right: 10px; }
.term-contact { margin-top: 15px; margin-bottom: 25px; color: #aaa; text-align: center; }
.discord-tag { color: #facc15; font-weight: 700; }
.form-link { color: #facc15; font-weight: 700; cursor: pointer; text-decoration: line-through; }
.term-desc { border-top: 1px solid #222; padding-top: 20px; font-size: 0.9rem; line-height: 1.6; color: #fff; }

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .modal-content { width: 95%; }
}