/* === Arhondaric - Presentation Site === */
/* Paleta monahala: auriu, maroniu, crem, albastru bizantin */

:root {
    --gold: #B8860B;
    --gold-light: #D4A53C;
    --gold-dark: #8B6508;
    --brown: #5D4037;
    --brown-dark: #3E2723;
    --cream: #FAF5E6;
    --cream-dark: #F0E6D2;
    --byzantine: #1F3864;
    --byzantine-light: #2C4A7C;
    --text-dark: #2C1810;
    --text-light: #6D4C41;
    --shadow: rgba(93, 64, 55, 0.15);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', 'Cardo', Georgia, serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cardo', Georgia, serif;
    color: var(--brown-dark);
    font-weight: 700;
}

a {
    color: var(--byzantine);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--gold-dark);
}

/* === Navbar === */
.navbar {
    background: rgba(250, 245, 230, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar-brand {
    font-family: 'Cardo', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brown-dark) !important;
}

.navbar-brand i {
    color: var(--gold);
    margin-right: 8px;
}

.navbar-nav .nav-link {
    color: var(--brown) !important;
    font-weight: 600;
    margin: 0 8px;
    position: relative;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-dark) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* === Hero === */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #2C1810 0%, #5D4037 50%, #8B6508 100%);
    color: var(--cream);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-cross {
    font-size: 4rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(212, 165, 60, 0.6);
}

.hero h1 {
    font-size: 5rem;
    color: var(--cream);
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--cream);
    opacity: 0.95;
    margin-bottom: 35px;
    font-style: italic;
    line-height: 1.6;
}

.hero-quote {
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 45px;
    padding: 20px 30px;
    border-left: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    background: rgba(0,0,0,0.2);
    display: inline-block;
    border-radius: 4px;
}

.hero-quote small {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--gold);
    color: var(--cream) !important;
    border: 2px solid var(--gold);
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-custom:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.btn-outline-custom {
    background: transparent;
    color: var(--cream) !important;
    border: 2px solid var(--cream);
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-custom:hover {
    background: var(--cream);
    color: var(--brown-dark) !important;
    transform: translateY(-2px);
}

/* === Sections === */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: var(--cream-dark);
}

.section-gold {
    background: linear-gradient(135deg, var(--cream-dark) 0%, #E8D7B0 100%);
}

.section-title {
    font-size: 3rem;
    color: var(--brown-dark);
    margin-bottom: 15px;
}

.section-title-left {
    font-size: 2.5rem;
    color: var(--brown-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0;
}

.ornament {
    font-size: 2rem;
    color: var(--gold);
    margin: 20px 0 30px;
    text-align: center;
}

.ornament-left {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* === Benefit Cards === */
.benefit-card {
    background: var(--cream);
    padding: 40px 25px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px var(--shadow);
    border-top: 4px solid var(--gold);
    transition: all 0.4s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow);
    border-top-color: var(--brown);
}

.benefit-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--brown-dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

/* === Modules Grid === */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.module-item {
    background: var(--cream);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    border-left: 5px solid var(--gold);
    position: relative;
    transition: all 0.4s;
}

.module-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
    border-left-color: var(--brown);
}

.module-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cardo', Georgia, serif;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.module-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.module-item h3 {
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.module-item p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.module-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-item ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.module-item ul li::before {
    content: '✠';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: bold;
}

/* === Cui se adreseaza === */
.list-checked {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.list-checked li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.list-checked li::before {
    content: '✠';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: bold;
}

.cui-image {
    text-align: center;
    font-size: 18rem;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
}

/* === Cost Cards === */
.cost-card {
    background: var(--cream);
    padding: 50px 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 6px 30px var(--shadow);
    height: 100%;
    transition: all 0.4s;
}

.cost-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--shadow);
}

.cost-free {
    border-top: 5px solid var(--gold);
}

.cost-server {
    border-top: 5px solid var(--byzantine);
}

.cost-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.cost-server .cost-icon {
    color: var(--byzantine);
}

.cost-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.cost-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin: 20px 0;
    font-family: 'Cardo', Georgia, serif;
}

.cost-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* === Steps === */
.step-card {
    background: var(--cream);
    padding: 40px 25px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
    transition: all 0.4s;
    border-bottom: 4px solid var(--gold);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cardo', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--brown);
    margin-bottom: 15px;
    display: block;
}

.step-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* === FAQ === */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cream);
    padding: 30px 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 20px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px var(--shadow);
    border-left-color: var(--brown);
}

.faq-question {
    font-size: 1.4rem;
    color: var(--brown-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    padding-left: 35px;
}

.faq-question::before {
    content: '?';
    position: absolute;
    left: 0;
    top: -2px;
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cardo', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
    padding-left: 35px;
}

@media (max-width: 576px) {
    .faq-item { padding: 22px 20px; }
    .faq-question { font-size: 1.15rem; padding-left: 30px; }
    .faq-question::before { width: 24px; height: 24px; font-size: 0.95rem; }
    .faq-answer { font-size: 0.95rem; padding-left: 30px; }
}

/* === Contact === */
.contact-card {
    background: var(--cream);
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 6px 30px var(--shadow);
    border-top: 5px solid var(--gold);
}

.contact-big-icon {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-card h4 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--brown);
}

.contact-link {
    font-size: 1.4rem;
    color: var(--byzantine);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.contact-link:hover {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
}

/* === Footer === */
.footer {
    background: linear-gradient(135deg, var(--brown-dark) 0%, #2C1810 100%);
    color: var(--cream);
    padding: 70px 0 40px;
    text-align: center;
}

.footer-cross {
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(212, 165, 60, 0.5);
}

.footer-quote {
    font-size: 1.3rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-signature {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-signature strong {
    color: var(--gold-light);
    font-family: 'Cardo', Georgia, serif;
    font-size: 1.2rem;
}

.footer-hr {
    border-color: rgba(184, 134, 11, 0.3);
    margin: 30px auto;
    max-width: 400px;
}

.footer-copyright {
    color: rgba(250, 245, 230, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-copyright a {
    color: var(--gold-light);
}

.footer-copyright a:hover {
    color: var(--cream);
}

/* === Responsive === */
@media (max-width: 991px) {
    .hero h1 { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .section-title { font-size: 2.2rem; }
    .modules-grid { grid-template-columns: 1fr; }
    .section { padding: 70px 0; }
    .cui-image { font-size: 10rem; margin-top: 40px; }
}

@media (max-width: 576px) {
    body { font-size: 16px; }
    .hero { padding: 80px 0 60px; }
    .hero-cross { font-size: 3rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-quote { font-size: 0.95rem; padding: 15px 20px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom { width: 100%; }
    .section-title { font-size: 1.8rem; }
    .section { padding: 60px 0; }
    .module-item { padding: 25px 20px; }
    .module-number { width: 40px; height: 40px; font-size: 1.1rem; }
    .cost-card { padding: 35px 25px; }
    .cost-price { font-size: 2rem; }
    .contact-card { padding: 40px 25px; }
}

/* Smooth scroll */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
