:root {
    --primary: #FF6B00; /* JapTap Orange */
    --secondary: #904200; /* Deep Orange/Brown */
    --text-dark: #3E2723; /* Dark brown for text */
    --footer-bg: #3E2723; /* Dark brown footer */
    --bg-light: #FFF5EC; /* Soft warm background */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('golden-bg.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: relative;
    z-index: 10;
    background-color: rgba(26, 16, 5, 0.6); /* Dark semi-transparent */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.om-symbol {
    font-size: 28px;
    color: var(--primary);
}

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    color: white; /* White for better visibility */
}

.nav-links a {
    text-decoration: none;
    color: white; /* White links */
    margin-left: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.admin-btn {
    background-color: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 20px;
}

/* Hero Container */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 5%;
    flex: 1;
    position: relative;
    z-index: 10;
}

/* Left Content */
.hero-content {
    max-width: 600px;
}

.logo-large {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-large h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-large span {
    font-size: 14px;
    color: #FFD54F; /* Bright golden yellow */
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.main-heading {
    font-size: 48px;
    font-weight: 800;
    color: white; /* White for max contrast */
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.main-heading span {
    color: var(--primary);
}

.sub-heading {
    font-size: 18px;
    color: #F5F5F5;
    margin-bottom: 40px;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* Features Row */
.features-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    min-width: 70px;
}

.feat-item i {
    font-size: 40px;
    color: var(--primary);
    background: rgba(255,255,255,0.85);
    padding: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255,107,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}

.feat-item span {
    font-size: 12px;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
}

.btn strong {
    display: block;
    font-size: 16px;
}

.btn small {
    font-size: 11px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(255,107,0,0.3);
}

.btn-primary:hover {
    background-color: #E65100;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: rgba(255,107,0,0.1);
}

/* Phone Mockup */
.hero-mockup {
    position: relative;
    right: 5%;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background-color: #1A1A1A;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
    border: 3px solid #555;
    position: relative;
}

.phone-screen {
    background-color: #FFF3E0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
}

.phone-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.om-phone {
    font-size: 32px;
    color: var(--text-dark);
}

.phone-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.phone-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(255,107,0,0.3);
    background-color: rgba(255,255,255,0.5);
}

.phone-circle h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1;
}

.phone-circle p {
    font-size: 10px;
    color: #666;
}

.phone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
    margin-bottom: 10px;
}

.p-btn {
    background-color: white;
    padding: 10px 0;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid #FFE0B2;
}

.p-btn-large {
    background-color: var(--primary);
    color: white;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    border-radius: 12px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255,107,0,0.4);
}

.phone-stats {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: white;
    padding: 15px 10px;
    border-radius: 12px;
    border: 1px solid #FFE0B2;
}

.phone-stats div {
    text-align: center;
}

.phone-stats small {
    font-size: 9px;
    color: #888;
}

.phone-stats strong {
    display: block;
    font-size: 12px;
    color: var(--text-dark);
}

/* Footer Bar in Hero */
.hero-footer-bar {
    background-color: var(--footer-bg);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.hf-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.hf-item strong {
    font-size: 14px;
    display: block;
}

.hf-item p {
    font-size: 11px;
    color: #BCAAA4;
}

/* About Section */
.about-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

.about-text {
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text .highlight {
    color: var(--primary);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #5D4037;
}

.about-text .lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.mv-card {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #FFE0B2;
}

.mv-card h3 {
    margin: 10px 0;
    color: var(--primary);
}

.mv-card p {
    font-size: 14px;
    margin-bottom: 0;
}

.about-lists {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.list-col {
    flex: 1;
}

.list-col h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.list-col ul {
    list-style: none;
}

.list-col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #5D4037;
}

.dev-info {
    background-color: rgba(255, 107, 0, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin-bottom: 30px;
}

.dev-info p {
    margin-bottom: 5px;
    font-size: 15px;
}

.message-quote {
    font-style: italic;
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-graphic {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(255,107,0,0.2);
    animation: float 6s ease-in-out infinite;
}

.graphic-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,0,0.3) 0%, rgba(255,255,255,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive: Tablet & Small Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .about-container {
        flex-direction: column;
    }
    .mission-vision-grid, .about-lists {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .features-row {
        justify-content: center;
        flex-wrap: wrap;
    }
    .cta-buttons {
        justify-content: center;
    }
    .hero-mockup {
        right: 0;
        margin-top: 20px;
    }
    .hero-footer-bar {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* Responsive: Mobile Phones (max-width: 768px) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .nav-links a {
        margin-left: 0;
    }
    .main-heading {
        font-size: 32px;
    }
    .sub-heading {
        font-size: 15px;
    }
    .features-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .btn {
        justify-content: center;
        width: 100%;
    }
    .phone-frame {
        width: 280px;
        height: 560px;
    }
    .about-section {
        padding: 40px 5%;
    }
    .about-text h2 {
        font-size: 28px;
    }
    .floating-img {
        max-width: 100%;
    }
    .main-footer {
        padding: 40px 5% 20px;
    }
}

/* Main Footer Styles */
.main-footer {
    background-color: #1A1005; /* Deep black-brown */
    color: #E0E0E0;
    padding: 60px 5% 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col.about-col {
    flex: 2;
    padding-right: 40px;
}

.footer-col h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col.about-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #BCAAA4;
    margin-top: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #BCAAA4;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #888;
}
