/* Mays Land & Livestock Inc — retro Showa-era inspired theme */

:root {
    --cream: #f4e9d8;
    --cream-dark: #e8dcc7;
    --salmon: #e8b4a2;
    --mint: #9cb8a8;
    --ink: #2c2622;
    --ink-soft: #5c534c;
    --vermillion: #c44b3f;
    --teal-soft: #6a8f86;
    --paper: #fffcf5;
    --shadow-soft: rgba(44, 38, 34, 0.12);
    --font-display: "Shippori Mincho B1", "Georgia", serif;
    --font-ui: "Kosugi Maru", system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink);
    background-color: var(--cream);
    background-image:
        radial-gradient(circle at 12% 18%, rgba(232, 180, 162, 0.35), transparent 38%),
        radial-gradient(circle at 88% 72%, rgba(156, 184, 168, 0.28), transparent 40%),
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 48px,
            rgba(92, 83, 76, 0.04) 48px,
            rgba(92, 83, 76, 0.04) 49px
        );
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Navbar */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 252, 245, 0.92);
    border-bottom: 2px solid var(--cream-dark);
    box-shadow: 0 8px 0 rgba(196, 75, 63, 0.08);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-icon {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--vermillion);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink);
    max-width: 320px;
    line-height: 1.3;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 26px;
}

.nav-link {
    font-family: var(--font-ui);
    font-size: 15px;
    color: var(--ink-soft);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--vermillion);
}

.navbar.scrolled {
    box-shadow:
        0 6px 20px var(--shadow-soft),
        inset 0 -1px 0 var(--cream-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--ink);
    border-radius: 2px;
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--paper);
        border-bottom: 2px solid var(--cream-dark);
        padding: 22px;
        gap: 14px;
        transform: translateY(-125%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease;
        box-shadow: 0 12px 24px var(--shadow-soft);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}

/* Hero */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    padding-bottom: 88px;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.memphis-shapes .shape {
    position: absolute;
    opacity: 0.55;
}

.shape-circle {
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.55), transparent 62%);
    border: 3px dashed rgba(196, 75, 63, 0.35);
}

.shape-1 { width: 120px; height: 120px; top: 10%; right: 8%; }
.shape-2 { width: 72px; height: 72px; bottom: 28%; left: 6%; border-color: rgba(106, 143, 134, 0.45); }
.shape-3 { width: 48px; height: 48px; top: 38%; left: 14%; }

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 46px solid transparent;
    border-right: 46px solid transparent;
    border-bottom: 78px solid rgba(232, 180, 162, 0.5);
}

.shape-4 { top: 16%; left: 22%; transform: rotate(-6deg); }
.shape-5 { bottom: 12%; right: 16%; border-bottom-color: rgba(106, 143, 134, 0.45); }

.shape-zigzag,
.shape-squiggle {
    display: none;
}

.polka-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(92, 83, 76, 0.12) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.85;
}

.stripes-diag {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        125deg,
        transparent,
        transparent 22px,
        rgba(196, 75, 63, 0.05) 22px,
        rgba(196, 75, 63, 0.05) 23px
    );
}

.pixel-scan {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--paper);
    background: linear-gradient(135deg, var(--mint), var(--teal-soft));
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 4px 14px var(--shadow-soft);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5.8vw, 56px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin-bottom: 10px;
    text-shadow: 2px 3px 0 rgba(248, 230, 210, 0.9);
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--vermillion);
    -webkit-text-fill-color: var(--vermillion);
}

.hero-pretitle {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--ink-soft);
    margin-bottom: 18px;
    font-weight: 500;
}

.hero-subtitle {
    font-family: var(--font-ui);
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 720px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
    background: linear-gradient(180deg, var(--salmon), #dba08e);
    color: var(--ink);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.45),
        0 4px 0 var(--cream-dark),
        0 8px 18px var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        0 6px 0 var(--cream-dark),
        0 12px 26px var(--shadow-soft);
}

.btn-secondary {
    background: var(--paper);
    color: var(--ink);
    border: 2px solid var(--cream-dark);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 3px 0 rgba(232, 180, 162, 0.45);
}

.btn-secondary:hover {
    border-color: var(--mint);
    color: var(--teal-soft);
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.scroll-indicator .arrow {
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--vermillion);
    border-bottom: 2px solid var(--vermillion);
    transform: rotate(45deg);
    animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(8px) rotate(45deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.8vw, 38px);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.section-subtitle {
    font-family: var(--font-ui);
    font-size: 16px;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 auto;
}

.section-tag {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--vermillion);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Services */

.games-section {
    padding: 96px 0;
    background: linear-gradient(180deg, rgba(248, 242, 230, 0.95), var(--cream) 52%);
    border-top: 2px solid rgba(232, 180, 162, 0.45);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}

.game-card {
    background: var(--paper);
    border: 2px solid var(--cream-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 4px 0 rgba(232, 180, 162, 0.35),
        0 12px 28px var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 6px 0 rgba(156, 184, 168, 0.45),
        0 22px 40px var(--shadow-soft);
}

.game-card.featured {
    border-color: rgba(196, 75, 63, 0.45);
}

.game-image {
    position: relative;
    height: 168px;
    background: linear-gradient(145deg, var(--cream-dark), rgba(232, 180, 162, 0.35));
}

.game-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 0%, rgba(255, 252, 245, 0.9), transparent 72%);
}

.game-icon {
    font-size: 2.9rem;
    filter: drop-shadow(2px 3px 0 rgba(196, 75, 63, 0.15));
}

.game-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
}

.game-badge {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(44, 38, 34, 0.12);
    background: var(--paper);
    color: var(--ink-soft);
}

.game-badge.new {
    background: rgba(156, 184, 168, 0.45);
    color: var(--ink);
}

.game-badge.popular {
    background: rgba(232, 180, 162, 0.55);
    color: var(--ink);
}

.game-badge.coming {
    background: rgba(247, 220, 200, 0.85);
    color: var(--ink);
}

.game-content {
    padding: 22px 22px 24px;
}

.game-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.game-genre {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--teal-soft);
    margin-bottom: 10px;
}

.game-description {
    font-family: var(--font-ui);
    font-size: 15px;
    color: var(--ink-soft);
    margin-bottom: 14px;
    line-height: 1.7;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.feature-tag {
    font-family: var(--font-ui);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(244, 233, 216, 0.85);
    border: 1px solid rgba(156, 184, 168, 0.45);
    color: var(--ink-soft);
}

.game-link {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--vermillion);
    text-decoration: none;
}

.game-link:hover {
    text-decoration: underline;
}

/* About */

.about-section {
    padding: 96px 0;
    border-top: 2px solid rgba(232, 180, 162, 0.35);
    background:
        radial-gradient(ellipse at 82% 20%, rgba(232, 180, 162, 0.18), transparent 55%),
        var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.about-description {
    font-family: var(--font-ui);
    color: var(--ink-soft);
    margin-bottom: 14px;
    font-size: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 26px;
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-item {
    padding: 16px;
    background: var(--paper);
    border-radius: 16px;
    border: 2px solid rgba(232, 220, 200, 0.9);
    box-shadow: 0 4px 14px var(--shadow-soft);
}

.value-item h4 {
    font-family: var(--font-display);
    margin: 8px 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.value-item p {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.about-visual {
    position: relative;
    height: 332px;
}

.visual-card {
    position: absolute;
    border-radius: 18px;
    border: 2px solid var(--cream-dark);
    box-shadow: 0 8px 20px var(--shadow-soft);
}

.visual-card.card-1 {
    width: 86%;
    height: 172px;
    top: 0;
    right: 0;
    background: linear-gradient(140deg, var(--mint), rgba(248, 230, 210, 0.55));
}

.visual-card.card-2 {
    width: 70%;
    height: 132px;
    bottom: 60px;
    left: 0;
    background: linear-gradient(120deg, var(--cream-dark), rgba(232, 180, 162, 0.5));
}

.visual-card.card-3 {
    width: 48%;
    height: 88px;
    bottom: 0;
    right: 10%;
    background: rgba(247, 220, 200, 0.92);
}

/* Contact */

.contact-section {
    padding: 96px 0;
    background: linear-gradient(180deg, var(--cream) 0%, rgba(248, 242, 230, 0.98) 100%);
    border-top: 2px solid rgba(106, 143, 134, 0.28);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.14fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

.info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 26px;
}

.info-icon {
    font-size: 1.48rem;
    line-height: 1;
    filter: drop-shadow(2px 2px 0 rgba(196, 75, 63, 0.12));
}

.info-text h4 {
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--vermillion);
    font-weight: 600;
}

.info-text p,
.info-text a {
    font-family: var(--font-ui);
    font-size: 15px;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.65;
}

.info-text a:hover {
    color: var(--vermillion);
    text-decoration: underline;
}

.info-note {
    font-size: 14px;
    color: var(--ink-soft);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.social-link {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--ink);
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 999px;
    border: 2px solid var(--cream-dark);
    background: var(--paper);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.social-link:hover {
    border-color: var(--mint);
    color: var(--teal-soft);
}

.contact-form {
    background: var(--paper);
    border: 2px solid var(--cream-dark);
    border-radius: 22px;
    padding: 28px;
    box-shadow:
        0 4px 0 rgba(232, 180, 162, 0.25),
        0 16px 34px var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 15px;
    border: 2px solid var(--cream-dark);
    border-radius: 14px;
    background: rgba(248, 242, 230, 0.55);
    color: var(--ink);
    font-family: var(--font-ui);
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #958b82;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(106, 143, 134, 0.75);
    box-shadow: 0 0 0 4px rgba(156, 184, 168, 0.22);
}

/* Footer */

.footer {
    padding: 58px 0 26px;
    border-top: 2px dashed rgba(196, 75, 63, 0.22);
    background: radial-gradient(circle at 50% -20%, rgba(232, 180, 162, 0.2), var(--cream) 55%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-description {
    font-family: var(--font-ui);
    color: var(--ink-soft);
    font-size: 14px;
    margin-top: 12px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--vermillion);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--vermillion);
    text-decoration: underline;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.newsletter-form input {
    padding: 12px 14px;
    border: 2px solid var(--cream-dark);
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-ui);
    font-size: 14px;
}

.newsletter-form .btn-primary {
    width: 100%;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(232, 180, 162, 0.35);
    text-align: center;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--ink-soft);
}
