/*
Theme Name: Alyeska POS
Description: Custom theme for Alyeska POS - Alaska & Hawaii
Version: 1.0
*/

:root {
    --navy: #0A1A2F;
    --teal: #00A8B5;
    --white: #FFFFFF;
    --gray: #F4F7F9;
    --text-dark: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--teal);
}

.btn-nav-quote {
    background: var(--teal);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-nav-quote:hover {
    background: #008e99;
}

/* Hero Section - Restored to Vibrant & Centered */
.hero {
    background: linear-gradient(rgba(10, 26, 47, 0.3), rgba(10, 26, 47, 0.3)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 180px 0;
    color: var(--white);
    text-align: center; /* Centered text */
}

.hero-content {
    max-width: 900px;
    margin: 0 auto; /* Center the content box */
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 45px;
    opacity: 1;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.btn-hero {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, background 0.3s;
}

.btn-hero:hover {
    background: #008e99;
    transform: translateY(-2px);
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: var(--gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 42px;
    color: var(--navy);
    font-weight: 800;
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.industry-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.card-inner {
    display: flex;
    height: 100%;
}

.card-img-box {
    flex: 0 0 45%;
    overflow: hidden;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-text-box {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.card-icon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon-header i {
    font-size: 24px;
    color: var(--teal);
}

.card-icon-header h3 {
    font-size: 22px;
    color: var(--navy);
    font-weight: 800;
    margin: 0;
}

.card-text-box p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.card-text-box ul {
    list-style: none;
    margin-bottom: 30px;
}

.card-text-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.card-text-box ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--teal);
}

.card-cta {
    margin-top: auto;
    color: var(--teal);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Support Section */
.support {
    padding: 120px 0;
    background: var(--navy);
    color: var(--white);
}

.support .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.support-content {
    flex: 1;
}

.support-content .sub {
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.support-content h2 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.support-content .desc {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.support-image {
    flex: 1;
}

.support-image img {
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(0,168,181,0.4));
}

/* Footer */
footer {
    background: #050d18;
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

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

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 30px;
    display: block;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s;
}

.social-icon:hover {
    background: var(--teal);
}

.footer-form h3 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 800;
}

.footer-form .sub {
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-form input, .footer-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: var(--white);
    font-family: inherit;
}

.btn-submit {
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    color: var(--teal);
    font-size: 20px;
    margin-top: 5px;
}

.info-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item span {
    opacity: 0.6;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    opacity: 0.5;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-content h1 {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
    .card-inner {
        flex-direction: column;
    }
    .card-img-box {
        height: 250px;
    }
    .support .container {
        flex-direction: column;
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
