/*----------------------------------------------------
@File: Default Styles
Aarzoo Website
----------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Roboto:wght@300;400;500;700&display=swap");

/* ========================
   ROOT VARIABLES
======================== */
:root {
    --primary: #c0395a;
    --primary-light: #e8536f;
    --primary-dark: #8e2040;
    --accent: #f5a623;
    --dark: #1a1a2e;
    --dark-soft: #2d2d44;
    --light-bg: #fdf6f8;
    --white: #ffffff;
    --text-body: #4a4a6a;
    --text-muted: #8888aa;
    --border: #f0dce2;
    --gradient: linear-gradient(135deg, #c0395a 0%, #8e2040 100%);
    --gradient-warm: linear-gradient(135deg, #f5a623 0%, #c0395a 100%);
}

/* ========================
   BASE
======================== */
* { box-sizing: border-box; }

body {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-body);
    background: var(--white);
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; }

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ========================
   SECTION LABELS
======================== */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
}

.divider {
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    margin: 18px 0 30px;
}

.divider-center {
    margin: 18px auto 30px;
}

/* ========================
   NAVBAR
======================== */
.navbar-custom {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(192,57,90,0.08);
    padding: 0;
    transition: all 0.3s ease;
}

.navbar-custom .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.navbar-brand img {
    height: 52px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
    gap: 6px;
}

.nav-links a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--primary);
    color: #fff;
}

/* Mobile nav */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========================
   HERO / BANNER
======================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide:nth-child(1) { background-image: url('../img/banner/slider1.jpg'); }
.hero-slide:nth-child(2) { background-image: url('../img/banner/slider2.jpg'); }
.hero-slide:nth-child(3) { background-image: url('../img/banner/slider3.jpg'); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,10,20,0.75) 0%, rgba(142,32,64,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 120px 0 80px;
}

.hero-content .eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    border-radius: 25px;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--gradient);
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    box-shadow: 0 8px 25px rgba(192,57,90,0.4);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(192,57,90,0.5);
    color: #fff;
}

.btn-outline-light-custom {
    background: transparent;
    color: #fff;
    padding: 13px 34px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
}

.btn-outline-light-custom:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

/* Slide indicators */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* ========================
   WHAT IS AARZOO
======================== */
.what-section {
    background: var(--light-bg);
}

.what-section .image-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(192,57,90,0.15);
}

.what-section .image-block img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.what-section .image-block::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 120px; height: 120px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}

.offer-list {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
}

.offer-list li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 13px;
}

/* ========================
   STATS BAR
======================== */
.stats-bar {
    background: var(--gradient);
    padding: 40px 0;
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 10px 20px;
}

.stat-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-item .label {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.85;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.25);
    align-self: center;
}

/* ========================
   COMMUNITY SECTION
======================== */
.community-section {
    background: #fff;
}

.community-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 36px 30px;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.community-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(192,57,90,0.12);
    border-color: var(--primary-light);
}

.community-card .icon-wrap {
    width: 56px; height: 56px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.community-card .icon-wrap i {
    color: #fff;
    font-size: 22px;
}

.community-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.community-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ========================
   SERVICES
======================== */
.services-section {
    background: var(--dark);
}

.services-section .section-title,
.services-section .section-label { color: #fff; }

.services-section .section-subtitle { color: rgba(255,255,255,0.6); }

.service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s;
}

.service-card:hover {
    background: rgba(192,57,90,0.15);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.service-card .icon {
    font-size: 32px;
    margin-bottom: 18px;
    display: block;
}

.service-card h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* ========================
   WHY AARZOO
======================== */
.why-section {
    background: var(--light-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.why-card:hover {
    box-shadow: 0 12px 35px rgba(192,57,90,0.1);
    border-color: var(--primary-light);
}

.why-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    flex-shrink: 0;
}

.why-card h5 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--dark);
}

.why-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ========================
   ABOUT
======================== */
.about-section {
    background: #fff;
}

.about-quote {
    border-left: 4px solid var(--primary);
    padding: 20px 28px;
    background: var(--light-bg);
    border-radius: 0 12px 12px 0;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 28px;
}

.founder-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border);
}

.founder-card .founder-photo {
    width: 80px; height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    border: 3px solid var(--primary);
}

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

/* ========================
   COFFEE CLUB
======================== */
.coffee-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.coffee-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(192,57,90,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.coffee-section .section-title { color: #fff; }
.coffee-section .section-label { color: var(--accent); }
.coffee-section .divider { background: var(--gradient-warm); }

.coffee-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.coffee-feature:last-child { border-bottom: none; }

.coffee-feature .dot {
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.coffee-feature p {
    color: rgba(255,255,255,0.75);
    margin: 0;
    font-size: 15px;
}

.coffee-feature h6 {
    color: #fff;
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
}

.coffee-img-block {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.coffee-img-block img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
}

.coffee-badge {
    position: absolute;
    bottom: 30px; left: 30px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(245,166,35,0.4);
}

/* ========================
   FLEA MARKETS
======================== */
.flea-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.flea-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(192,57,90,0.1);
}

.flea-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.flea-card h5 { font-size: 18px; margin-bottom: 10px; }
.flea-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ========================
   MEDIA
======================== */
.media-section {
    background: #fff;
}

.media-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    height: 100%;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    box-shadow: 0 12px 40px rgba(192,57,90,0.1);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.media-card .pub-badge {
    display: inline-block;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.media-card h5 {
    font-size: 17px;
    line-height: 1.4;
    flex: 1;
    margin-bottom: 18px;
}

.media-card a.read-link {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.media-card a.read-link:hover { color: var(--primary-dark); }

/* ========================
   CONTACT
======================== */
.contact-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(192,57,90,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-section .section-title { color: #fff; }
.contact-section .section-label { color: var(--accent); }

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.contact-info-item:hover {
    background: rgba(192,57,90,0.15);
    border-color: var(--primary);
}

.contact-info-item .ci-icon {
    width: 48px; height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .ci-icon i { color: #fff; font-size: 18px; }

.contact-info-item .ci-text label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.contact-info-item .ci-text a,
.contact-info-item .ci-text span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

/* Inquiry Form */
.inquiry-form-wrap {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
}

.inquiry-form-wrap h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 28px;
}

.form-control-custom {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 13px 18px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}

.form-control-custom::placeholder { color: rgba(255,255,255,0.4); }

.form-control-custom:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
}

textarea.form-control-custom { resize: vertical; min-height: 110px; }

.form-group-custom { margin-bottom: 16px; }

.submit-btn {
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 8px 25px rgba(192,57,90,0.35);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(192,57,90,0.5);
}

/* ========================
   FOOTER
======================== */
.footer-custom {
    background: #0f0a0d;
    padding: 50px 0 30px;
}

.footer-custom .logo img {
    height: 52px;
    margin-bottom: 18px;
}

.footer-custom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-nav-col h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-nav-col ul {
    list-style: none;
    padding: 0; margin: 0;
}

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

.footer-nav-col ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
    margin: 0;
    max-width: none;
}

.footer-bottom a { color: var(--primary-light); }

/* ========================
   SCROLL TO TOP
======================== */
.scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(192,57,90,0.4);
    border: none;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }
