/* ============================================
   AMAR RESTORANT & LOUNGE LTD — Master Stylesheet
   ============================================ */

:root {
    --primary: #6B1D2A;
    --primary-light: #8A2B3C;
    --primary-dark: #4E1520;
    --accent: #C9A84C;
    --accent-hover: #B8953A;
    --bg: #FDFBF7;
    --bg-alt: #F5F0E8;
    --bg-dark: #1A1412;
    --bg-dark-alt: #2A201B;
    --text-dark: #1E1815;
    --text-mid: #5C524A;
    --text-light: #FDFBF7;
    --border: #E2DDD4;
    --border-light: #EDE8DE;
    --shadow: rgba(26, 20, 18, 0.08);
    --shadow-lg: rgba(26, 20, 18, 0.14);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.25s ease;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    box-shadow: 0 4px 14px rgba(107, 29, 42, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--text-light);
}

.btn-sm {
    padding: 9px 22px;
    font-size: 0.85rem;
}

/* ---- Navbar ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar-logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--primary);
}
.navbar-logo span {
    color: var(--accent);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-links a:not(.btn) {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color var(--transition);
    position: relative;
}
.navbar-links a:not(.btn):hover,
.navbar-links a:not(.btn).active {
    color: var(--primary);
}
.navbar-links a:not(.btn).active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 4px;
}

/* ---- Hero ---- */
.hero {
    background: linear-gradient(160deg, var(--bg-dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    padding: 100px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.07);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.05);
    pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(253, 251, 247, 0.75);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-actions .btn-outline {
    color: var(--text-light);
    border-color: rgba(253, 251, 247, 0.35);
}
.hero-actions .btn-outline:hover {
    background: rgba(253, 251, 247, 0.12);
    border-color: var(--text-light);
}

/* ---- Value Props ---- */
.value-props {
    padding: 80px 0;
    background: var(--bg);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    background: #fff;
    transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover {
    box-shadow: 0 8px 30px var(--shadow);
    transform: translateY(-3px);
}

.value-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ---- Section Header ---- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto;
}

/* ---- Services ---- */
.services {
    padding: 80px 0;
    background: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
    box-shadow: 0 8px 30px var(--shadow);
    transform: translateY(-3px);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.section-cta {
    text-align: center;
    margin-top: 44px;
}

/* ---- About Strip ---- */
.about-strip {
    padding: 80px 0;
    background: var(--bg);
}

.about-strip-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

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

.about-strip-text p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-strip-text .btn {
    margin-top: 12px;
}

.about-deco {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.deco-text {
    color: var(--accent);
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
}

/* ---- Credentials ---- */
.credentials {
    padding: 48px 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.credential-item {
    text-align: center;
    padding: 16px 12px;
    border-right: 1px solid rgba(253, 251, 247, 0.12);
}
.credential-item:last-child { border-right: none; }

.credential-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.credential-value {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(253, 251, 247, 0.85);
    line-height: 1.5;
}

/* ---- CTA Section ---- */
.cta-section {
    padding: 80px 0;
    background: var(--bg-alt);
    text-align: center;
}

.cta-inner h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.cta-inner p {
    font-size: 1.05rem;
    color: var(--text-mid);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Footer ---- */
.footer {
    background: var(--bg-dark);
    color: rgba(253, 251, 247, 0.75);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-company-info {
    font-size: 0.8rem !important;
    color: rgba(253, 251, 247, 0.5) !important;
    line-height: 1.65 !important;
}

.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(253, 251, 247, 0.1);
    padding: 20px 0;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(253, 251, 247, 0.45);
    text-align: center;
}

/* ---- Mobile Responsive ---- */
@media (max-width: 768px) {
    .navbar-toggle { display: block; }

    .navbar-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 251, 247, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 30px var(--shadow-lg);
    }
    .navbar-links.open { display: flex; }

    .hero { padding: 60px 0 50px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-sub { font-size: 1rem; }

    .value-grid { grid-template-columns: 1fr; }

    .services-grid { grid-template-columns: 1fr; }

    .about-strip-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .credential-item { border-right: none; }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .credentials-grid { grid-template-columns: 1fr; }
}
