body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fefaf5;
    color: #1e1e1e;
    padding-top: 80px;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.navbar {
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    margin: 0 12px;
    transition: 0.2s;
}

.nav-link:hover {
    color: #d4a373 !important;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-left: 4px solid #d4a373;
    padding-left: 20px;
}

.tip-card {
    border: none;
    background: #fff8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.gallery-card img {
    transition: transform 0.4s ease;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    width: 100%;
    padding: 12px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    transform: translateY(100%);
    transition: 0.3s;
}

.gallery-card:hover .overlay {
    transform: translateY(0);
}

.footer-section {
    background: #2c2c2c;
    margin-top: 60px;
}

.btn-dark {
    background-color: #2c2c2c;
    border-radius: 0;
    padding: 12px 32px;
}

.btn-dark:hover {
    background-color: #d4a373;
    border-color: #d4a373;
}

blockquote .fs-4 {
    font-family: 'Cormorant Garamond', serif;
}