/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Warna palette coffee shop */
    --color-coffee-dark: #3C2A21;
    --color-coffee-medium: #5C4033;
    --color-coffee-light: #8B5A2B;
    --color-cream: #F5E8C7;
    --color-cream-light: #FFF9E6;
    --color-black: #1A120B;
    --color-dark-green: #2C5530;
    --color-accent: #D4A574;
    --color-accent-light: #E6C9A8;
    --color-white: #FFFFFF;
    --color-gray: #6B7280;
    --color-gray-light: #E5E7EB;
    --color-whatsapp: #25D366;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 10px 20px rgba(92, 64, 51, 0.1);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-cream-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-2xl) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-sm);
    color: var(--color-coffee-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: var(--radius-sm);
}

.section-subtitle {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: var(--space-xl);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================================== */
/* LOGO BULAT */
/* ====================================== */
.logo-circle {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-full);
    overflow: hidden;
    background-color: var(--color-white);
    border: 2.5px solid var(--color-accent);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-img-circle {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-full);
    transition: transform 0.3s ease;
}

.logo-circle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    border-color: var(--color-coffee-medium);
}

.logo-circle:hover .logo-img-circle {
    transform: scale(1.05);
}

.footer .logo-circle {
    width: 60px;
    height: 60px;
    border-width: 2px;
}

/* ====================================== */
/* TOP BAR */
/* ====================================== */
.top-bar {
    background-color: var(--color-coffee-dark);
    color: var(--color-cream);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.top-bar-info i {
    color: var(--color-accent);
}

/* ====================================== */
/* HEADER / NAVBAR */
/* ====================================== */
.header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-with-icon {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--color-coffee-dark);
    text-decoration: none;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--color-coffee-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-coffee-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-coffee-dark);
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-toggle:hover {
    background-color: var(--color-cream);
}

/* ====================================== */
/* HERO SECTION */
/* ====================================== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('images/banner2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    padding: 140px 0;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(60, 42, 33, 0.6),
        rgba(92, 64, 51, 0.4) 40%, 
        rgba(139, 90, 43, 0.3)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: var(--space-lg);
    color: var(--color-cream);
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.btn-hero {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-coffee-dark);
    padding: 16px 36px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-accent);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    background-color: transparent;
    color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ====================================== */
/* TOMBOL PROMO */
/* ====================================== */
.btn-promo {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-coffee-dark);
    padding: 16px 36px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-accent);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-promo:hover {
    background-color: transparent;
    color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Pastikan hero-actions tetap responsif */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}


/* ====================================== */
/* ABOUT SECTION */
/* ====================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-coffee-dark);
    margin-bottom: var(--space-md);
}

.about-text p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.vision-mission {
    margin-top: var(--space-xl);
}

.vision, .mission {
    margin-bottom: var(--space-lg);
}

.vision h3, .mission h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-dark-green);
}

.vision h3 i, .mission h3 i {
    color: var(--color-accent);
}

.mission ul {
    list-style-position: inside;
    margin-top: var(--space-sm);
}

.mission li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 500px;
    position: relative;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--color-white);
    padding: var(--space-lg);
    font-size: 0.9rem;
    text-align: center;
}

/* ====================================== */
/* KEUNGGULAN KAMI */
/* ====================================== */
.advantages-new {
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.advantage-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid var(--color-cream);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent-light);
}

.advantage-icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--color-cream);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    font-size: 1.8rem;
    color: var(--color-coffee-medium);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon-box {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.1);
}

.advantage-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-coffee-dark);
    margin-bottom: var(--space-sm);
}

.advantage-card p {
    color: var(--color-gray);
    line-height: 1.6;
}

/* ====================================== */
/* MENU KOPI ANDALAN */
/* ====================================== */
.menu-new {
    background-color: var(--color-cream-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.menu-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.menu-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img {
    transform: scale(1.05);
}

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-card-content {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-coffee-dark);
    margin-bottom: var(--space-sm);
}

.menu-card-content p {
    color: var(--color-gray);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.menu-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-coffee-light);
    margin-top: auto;
}

.menu-note {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
}

.menu-note p {
    color: var(--color-coffee-medium);
    font-style: italic;
}

/* ====================================== */
/* PROMO SPESIAL */
/* ====================================== */
.promo-section {
    background-color: var(--color-cream-light);
    padding: 80px 0;
}

.promo-content {
    max-width: 800px;
    margin: 0 auto;
}

.promo-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-cream);
}

.promo-details h3 {
    font-family: var(--font-heading);
    color: var(--color-black);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.promo-details > p {
    color: var(--color-gray);
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
    font-size: 1.1rem;
}

.promo-terms {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--color-cream);
    border-radius: var(--radius-md);
}

.promo-terms h4 {
    color: var(--color-black);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.promo-terms ul {
    list-style-type: none;
    padding-left: 0;
}

.promo-terms li {
    color: var(--color-black);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    font-size: 1rem;
}

.promo-terms li:before {
    content: "•";
    color: var(--color-accent);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.promo-claim-btn {
    text-align: center;
    margin-top: 30px;
}

/* ====================================== */
/* MODAL PROMO */
/* ====================================== */
.promo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    background-color: var(--color-coffee-dark);
    color: var(--color-white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-accent);
}

.modal-body {
    padding: 30px;
}

.modal-text {
    color: var(--color-gray);
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: center;
}

.promo-code-display {
    background-color: var(--color-cream);
    border-radius: var(--radius-md);
    padding: 15px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px dashed var(--color-accent-light);
}

#promoCode {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-black);
    letter-spacing: 1px;
}

.btn-copy {
    background-color: var(--color-white);
    color: var(--color-coffee-medium);
    border: 1px solid var(--color-gray-light);
    padding: 8px 15px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-copy:hover {
    background-color: var(--color-cream);
    border-color: var(--color-accent);
}

.btn-whatsapp {
    display: block;
    background-color: var(--color-whatsapp);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    margin: 15px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.promo-note {
    text-align: center;
    color: var(--color-gray);
    margin-top: 20px;
    font-style: italic;
}

/* ====================================== */
/* GALERI */
/* ====================================== */
.gallery-new {
    background-color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
    height: 300px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(60, 42, 33, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-text {
    color: var(--color-white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

.gallery-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ====================================== */
/* TESTIMONI */
/* ====================================== */
.testimonials-new {
    background-color: var(--color-cream-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid var(--color-cream);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent-light);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-cream);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-coffee-medium);
    margin-right: var(--space-md);
}

.customer-info h4 {
    font-family: var(--font-heading);
    color: var(--color-coffee-dark);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.customer-info p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.testimonial-body {
    flex-grow: 1;
    margin-bottom: var(--space-md);
}

.rating {
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--color-coffee-medium);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: var(--space-sm);
}

.testimonial-text::before {
    content: '"';
    font-size: 2rem;
    color: var(--color-accent-light);
    position: absolute;
    left: -5px;
    top: -10px;
    opacity: 0.5;
}

.testimonial-date {
    color: var(--color-gray);
    font-size: 0.8rem;
    text-align: right;
    margin-top: auto;
}

/* ====================================== */
/* LOKASI & KONTAK */
/* ====================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.contact-item {
    display: flex;
    margin-bottom: var(--space-lg);
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-cream);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-coffee-medium);
    margin-right: var(--space-md);
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: var(--font-heading);
    color: var(--color-coffee-dark);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--color-gray);
    line-height: 1.6;
}

.contact-details a {
    color: var(--color-coffee-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--color-accent);
}

.contact-social h3 {
    font-family: var(--font-heading);
    color: var(--color-coffee-dark);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--color-white);
}

.whatsapp-link {
    background-color: var(--color-whatsapp);
}

.instagram-link {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.facebook-link {
    background-color: #1877F2;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-note {
    background-color: var(--color-cream);
    padding: 10px;
    text-align: center;
    color: var(--color-coffee-medium);
    font-size: 0.9rem;
}

.map-note i {
    color: var(--color-accent);
    margin-right: 5px;
}

/* ====================================== */
/* FOOTER */
/* ====================================== */
/* ====================================== */
/* FOOTER */
/* ====================================== */
.footer {
    background-color: var(--color-coffee-dark);
    color: var(--color-cream);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section {
    margin-bottom: var(--space-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--color-cream);
}

.footer-description {
    color: var(--color-cream);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-cream);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--color-cream);
    opacity: 0.8;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--color-accent);
    margin-right: 10px;
    margin-top: 3px;
    width: 16px;
}

/* ====================================== */
/* INFO PEMBUAT WEBSITE */
/* ====================================== */
.footer-creator {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(245, 232, 199, 0.2);
}

.creator-info {
    color: var(--color-cream);
    opacity: 0.7;
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-style: italic;
}

.creator-name {
    color: var(--color-accent-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 3px;
}

.creator-nim {
    color: var(--color-cream);
    opacity: 0.8;
    font-size: 0.85rem;
}

/* ====================================== */
/* FOOTER BOTTOM */
/* ====================================== */
.footer-bottom {
    border-top: 1px solid rgba(245, 232, 199, 0.2);
    padding-top: var(--space-lg);
    text-align: center;
}

.copyright {
    color: var(--color-cream);
    opacity: 0.8;
    margin-bottom: 5px;
}

/* ====================================== */
/* RESPONSIVE DESIGN FOOTER */
/* ====================================== */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: var(--space-xl) 0 var(--space-md);
    }
    
    .footer-brand {
        font-size: 1.3rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
}
/* ====================================== */
/* RESPONSIVE DESIGN */
/* ====================================== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-xl) 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 100px 0;
        min-height: 70vh;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.7rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 14px 28px;
    }

     .hero {
        background:
            linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45)),
            url('images/5.jpg');
        background-size: cover;
        background-position: center;
    }

    /* Tipiskan overlay tambahan */
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(60, 42, 33, 0.4),
            rgba(92, 64, 51, 0.3),
            rgba(139, 90, 43, 0.2)
        );
    }

    
    /* Menu Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        position: relative;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu .nav-link {
        display: block;
        font-size: 1.1rem;
        padding: 15px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--color-cream);
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    .nav-menu .nav-link:hover {
        background-color: var(--color-cream);
        color: var(--color-coffee-dark);
    }
    
    .logo-circle {
        width: 55px;
        height: 55px;
    }
    
    .logo-text {
        font-size: 1.7rem;
    }
    
    .advantages-grid,
    .menu-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn-hero,
    .hero-actions .btn-promo {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .promo-card {
        padding: 30px 20px;
    }
    
    .modal-content {
        margin: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn-hero {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
    }
}