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

body {
    background-color: #ffffff;
    color: #333333;
}

/* 1. Topbar Styling */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 40px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #f0f0f0;
    font-size: 11px;
    color: #666666;
}

.topbar-left span {
    margin-right: 25px;
}

.topbar-right .search-box {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2px;
}

.search-box input {
    border: none;
    outline: none;
    font-size: 11px;
    width: 120px;
    color: #666;
}

.search-box button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 10px;
}

/* 2. Logo Styling */
.logo-container {
    text-align: center;
    padding: 30px 0 20px 0;
}

.logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    color: #333333;
    line-height: 1;
}

.logo-sub {
    font-size: 9px;
    letter-spacing: 4px;
    color: #888888;
    margin-top: 5px;
}

/* 3. Navbar Styling */
.navbar {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar a {
    text-decoration: none;
    color: inherit;
}

.nav-item {
    cursor: pointer;
    color: #333333;
    transition: color 0.2s;
}

.nav-item:hover, .nav-item.active {
    color: #d4a373; 
}

/* 4. Hero Banner Styling */
.hero-banner {
    position: relative;
    width: calc(100% - 60px); 
    margin: 0 auto;       
    height: 770px;
    overflow: hidden;        
    border-radius: 20px;
    display: flex;
    align-items: center;
}

/* Hide slides by default, show only active slide */
.hero-banner .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.hero-banner .slide.active {
    opacity: 1;
    visibility: visible;
}

/* Image scaling & alignment */
.hero-banner .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

/* Arrow Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    z-index: 10;
    transition: background 0.3s;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slider-arrow.left { left: 10px; }
.slider-arrow.right { right: 10px; }

/* Overlay Card for Article Details */
.hero-card {
    position: absolute;
    left: 20%;
    bottom: 25%;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    padding: 25px 35px;
    max-width: 320px;
    backdrop-filter: blur(3px);
    z-index: 5;
}

.hero-card .tag {
    background-color: #d4a373;
    color: white;
    display: inline-block;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-card .title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
}

.hero-card .date {
    font-size: 11px;
    color: #cccccc;
    font-style: italic;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

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

.dot.active {
    background: #ffffff;
    width: 10px;
    height: 10px;
}

/* 5. About Section Styling */
.about-section {
    max-width: 800px;
    margin: 50px auto 60px auto;
    padding: 0 20px;
    text-align: center;
}

.about-header {
    color: #d4a373;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    font-weight: 300;
}

/* 6. Footer Styling */
.site-footer {
    background-color: #f7f7f7;   
    width: 100%;                 
    margin: 40px 0 0 0;          
    border-radius: 0;          
    padding: 20px 40px;         
    font-size: 12px;
    color: #666666;
    border-top: 1px solid #f0f0f0; 
}

.footer-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    max-width: 100%;             
}

.footer-left {
    font-weight: 400;
}

.footer-right {
    font-weight: 400;
}

.footer-right .heart {
    color: #e63946; 
    margin-left: 2px;
}
