/* css/style.css - Main CSS File */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Tema Warna Coklat - Variables */
:root {
    --primary-brown: #8B4513;      /* Coklat tua */
    --secondary-brown: #A0522D;     /* Coklat sedang */
    --light-brown: #D2691E;          /* Coklat muda */
    --cream: #F5DEB3;                 /* Krem */
    --dark-brown: #5D3A1A;            /* Coklat gelap */
    --sand: #F4E4C1;                   /* Pasir */
    --coffee: #6F4E37;                 /* Coklat kopi */
    --white: #FFFFFF;
    --offwhite: #FFF8F0;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--offwhite);
    font-family: 'Poppins', sans-serif;
    color: var(--dark-brown);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header */
.top-header {
    background: var(--coffee);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--light-brown);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--cream);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--light-brown);
    transform: translateY(-3px);
}

/* Main Header */
.main-header {
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cream), var(--light-brown), var(--cream));
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-img img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.logo-text h1 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-text h1 span {
    color: var(--cream);
    font-weight: 300;
    font-style: italic;
}

.logo-text .tagline {
    color: var(--sand);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: -5px;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 15px;
}

.btn-header {
    background: var(--light-brown);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.btn-header i {
    font-size: 1.1rem;
}

.btn-header:hover {
    background: transparent;
    border-color: var(--cream);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-brown), var(--coffee));
    padding: 60px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20 50 L50 20 L80 50 L50 80 Z" fill="white"/></svg>');
    background-size: 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.hero-section h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--cream);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--sand);
}

/* Quick Access Menu */
.quick-access {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-brown);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--light-brown);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.menu-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-brown);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--sand);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--light-brown);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.2);
}

.menu-item:hover::before {
    transform: translateX(0);
}

.menu-item.highlight {
    background: var(--light-brown);
    color: white;
}

.menu-item.highlight .menu-icon {
    color: white;
}

.menu-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-brown);
}

.menu-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.menu-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Stats Section */
.stats-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--coffee), var(--dark-brown));
    color: white;
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--cream);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--sand);
}

/* Achievement Banner */
.achievement-banner {
    background: linear-gradient(135deg, var(--primary-brown), var(--coffee));
    padding: 50px;
    border-radius: 30px;
    color: white;
    margin: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.achievement-banner::before {
    content: '12+';
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 8rem;
    font-weight: 800;
    opacity: 0.1;
    color: white;
}

.achievement-content {
    position: relative;
    z-index: 1;
}

.achievement-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--cream);
}

.achievement-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.achievement-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.achievement-stats div {
    text-align: center;
}

.achievement-stats .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cream);
}

.achievement-stats .label {
    font-size: 1rem;
    opacity: 0.9;
}

/* News Section */
.news-section {
    padding: 50px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.2);
}

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--light-brown);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    color: var(--primary-brown);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.news-content p {
    color: var(--coffee);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.read-more {
    color: var(--light-brown);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
    color: var(--primary-brown);
}

.btn-view-all {
    display: inline-block;
    padding: 12px 35px;
    background: var(--light-brown);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-view-all:hover {
    background: transparent;
    border-color: var(--light-brown);
    color: var(--light-brown);
}

/* Announcement Section */
.announcement-section {
    padding: 50px 0;
}

.announcement-box {
    background: linear-gradient(135deg, var(--sand), var(--cream));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px dashed var(--light-brown);
}

.announcement-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--light-brown);
}

.announcement-box h3 {
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin-bottom: 10px;
}

.announcement-box p {
    color: var(--coffee);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievement-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .logo-section {
        flex-direction: column;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-header {
        justify-content: center;
    }
}


/* STAFF SECTION */
.staff-section{
    margin-top:40px;
    width:100%;
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:30px;
    justify-items:center;
}

.staff-group{
    text-align:center;
}

.staff-group h5{
    background:#F4C542;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    margin-bottom:12px;
    display:inline-block;
}

.staff-item{
    background:#f5f5f5;
    padding:8px 14px;
    border-radius:20px;
    margin-bottom:8px;
    font-size:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    box-shadow:0 3px 8px rgba(0,0,0,0.1);
}

.staff-avatar{
    background:#e5e5e5;
    width:28px;
    height:28px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:bold;
}

/* GLOBAL WEBSITE */

body{
    margin:0;
    padding:0;
    font-family: Arial, Helvetica, sans-serif;
    background:#f5f5f5;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

h1,h2,h3,h4,h5{
    margin:0;
}

section{
    padding:60px 0;
}


h3{
font-size:16px;
}

h4{
font-size:12px;
}

h5{
font-size:10px;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Showcase Description */
.showcase-description {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 40px;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
    }
    .showcase-description {
        font-size: 0.9rem;
        padding: 0 15px;
    }
