/* ========================================================
   🎮 NES CARTRIDGE BASE + VIBRANT ZELDA PALETTE VARIABLES
   ======================================================== */
:root {
    --bg-color: #8c929a;        /* NES/SNES Cartridge Textured Grey */
    --forest-green: #0e5135;    /* Deep Zelda Forest Green (Headings & Primary Panels) */
    --emerald-green: #0d9263;   /* Bright Emerald Green (Card Accents & Frames) */
    --gold: #e8c200;            /* Triforce Gold */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #1a1c24;
    line-height: 1.6;
    background-color: var(--bg-color);
    width: 100%;
    overflow-x: hidden;
}

/* ========================================================
   HEADER & NAVIGATION
   ======================================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: var(--forest-green);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 4px solid var(--gold);
}

.brand-container {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.initial {
    color: var(--gold);
    font-size: 26px;
    text-shadow: 0 0 8px rgba(232, 194, 0, 0.5);
}

.tagline {
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 2px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    margin-left: 20px;
    font-weight: 700;
    transition: all 0.3s;
}

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

.btn-nav {
    background: var(--gold);
    color: #0e5135 !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 800;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.btn-nav:hover {
    background: #fbd51a;
    transform: translateY(-1px);
}

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero {
    background: var(--bg-color);
    padding: 80px 5%;
    color: #1a1c24;
    width: 100%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    width: 100%;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--forest-green); /* Darker Forest Green */
    font-weight: 800;
}

.hero-subtext {
    font-size: 18px;
    color: #1a1c24;
    font-weight: 600;
    margin-bottom: 35px;
    max-width: 550px;
}

.btn-primary {
    display: inline-block;
    text-decoration: none;
    background: var(--gold);
    color: #0e5135;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(14, 81, 53, 0.3);
    transition: all 0.3s;
    border: 2px solid #0e5135;
}

.btn-primary:hover {
    background: #fbd51a;
    transform: translateY(-2px);
}

.hero-graphic {
    flex: 1;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--forest-green);
    padding: 30px;
    border-radius: 8px;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.evolution-stage {
    background: #0a3a26;
    padding: 20px 10px;
    border-radius: 6px;
    text-align: center;
    width: 120px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border: 2px solid var(--emerald-green);
}

.lvl-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #0e5135;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.evolution-icon {
    font-size: 36px;
    color: var(--gold);
    margin-top: 25px;
}

.evolution-stage p {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.evolution-arrow {
    font-size: 18px;
    color: var(--gold);
}

/* ========================================================
   SERVICES SECTION (SINGLE-ROW GRID)
   ======================================================== */
.services {
    padding: 80px 5%;
    background: var(--bg-color);
    border-top: 4px solid var(--forest-green);
    width: 100%;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 36px;
    color: var(--forest-green); /* Darker Forest Green */
    font-weight: 800;
    margin-bottom: 10px;
}

.services-header p {
    font-size: 18px;
    color: #1a1c24;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.service-card {
    background: var(--forest-green);
    border: 3px solid var(--gold);
    border-radius: 8px;
    padding: 30px 20px;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(14, 81, 53, 0.4);
    border-color: #ffffff;
}

.service-icon {
    font-size: 32px;
    color: var(--gold);
    background: #0a3a26;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 2px solid var(--emerald-green);
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 800;
}

.service-card p {
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.5;
}

/* ========================================================
   ABOUT ME SECTION (FULL-WIDTH GRID)
   ======================================================== */
.about {
    width: 100%;
    padding: 80px 5%;
    background: #1a1c24;
    border-top: 4px solid var(--gold);
    color: #ffffff;
}

.about-container {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 50px;
    width: 100%;
    align-items: start;
}

.about-card {
    background: var(--forest-green);
    border: 3px solid var(--gold);
    border-radius: 8px;
    padding: 35px 20px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.avatar-box {
    width: 120px;
    height: 120px;
    background: #0a3a26;
    border: 3px solid var(--gold);
    border-radius: 50%;
    margin: 0 auto 20px auto;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(232, 194, 0, 0.4);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-card h3 {
    font-size: 22px;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 4px;
}

.role-title {
    font-size: 14px;
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 25px;
}

.stats-list {
    background: #0a3a26;
    border: 1px solid var(--emerald-green);
    border-radius: 6px;
    padding: 16px;
    text-align: left;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
    margin-bottom: 10px;
    gap: 10px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-label {
    color: var(--gold);
    font-weight: 800;
    flex-shrink: 0;
}

.stat-value {
    color: #ffffff;
    font-weight: 600;
    text-align: right;
}

.about-content {
    width: 100%;
}

.about-content h2 {
    font-size: 36px;
    color: var(--gold); /* Switched to Gold for contrast against the dark slate panel */
    font-weight: 800;
    margin-bottom: 8px;
}

.tagline-sub {
    font-size: 18px;
    color: var(--emerald-green);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 18px;
    width: 100%;
}

.highlight-term {
    color: var(--gold);
    font-weight: 800;
}

/* ========================================================
   CONTACT & BOOKING SECTION
   ======================================================== */
.contact {
    padding: 80px 5%;
    background: var(--bg-color);
    border-top: 4px solid var(--forest-green);
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 36px;
    color: var(--forest-green); /* Darker Forest Green */
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 18px;
    color: #1a1c24;
    font-weight: 600;
    max-width: 650px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.contact-info-card {
    background: var(--forest-green);
    border: 3px solid var(--gold);
    border-radius: 8px;
    padding: 35px 25px;
    color: #ffffff;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.contact-info-card h3 {
    font-size: 22px;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-intro {
    font-size: 14px;
    color: #e2e8f0;
    margin-bottom: 30px;
    line-height: 1.5;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #0a3a26;
    border: 2px solid var(--emerald-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--gold);
    font-size: 14px;
}

.info-item p {
    font-size: 14px;
    color: #ffffff;
}

.contact-form {
    background: #1a1c24;
    border: 3px solid var(--gold);
    border-radius: 8px;
    padding: 35px;
    flex: 2;
    min-width: 320px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.contact-form label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #0a3a26;
    border: 1px solid var(--emerald-green);
    border-radius: 4px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(232, 194, 0, 0.4);
}

.contact-form select option {
    background: #0a3a26;
    color: #ffffff;
}

.btn-submit {
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
    margin-top: 10px;
}

/* ========================================================
   FOOTER
   ======================================================== */
footer {
    background: var(--forest-green);
    color: #e2e8f0;
    text-align: center;
    padding: 25px 5%;
    font-size: 13px;
    border-top: 3px solid var(--gold);
    width: 100%;
}

/* ========================================================
   RESPONSIVE MEDIA QUERIES
   ======================================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .about-card {
        max-width: 360px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}