/* Tana Minahasa - Modern Heritage Application Styles */
/* Note: Montserrat font loaded in app.blade.php layout */

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    background-color: #fdfdfd;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1e4012;
    letter-spacing: -0.01em;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #2c5e1a !important;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.5px;
}

.nav-custom-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-custom-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #2c5e1a;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-custom-link:hover::after {
    width: 100%;
}

.nav-custom-link:hover {
    color: #2c5e1a !important;
}

.nav-custom-link:active {
    transform: scale(0.95);
    transition: 0.1s;
}

.hero-bg {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1590273466070-40c466b4432d?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-bg h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    font-family: 'Montserrat', sans-serif;
    background-color: #2c5e1a;
    border-color: #2c5e1a;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background-color: #1e4012;
    border-color: #1e4012;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 94, 26, 0.3);
}

.btn-outline-primary {
    font-family: 'Montserrat', sans-serif;
    color: #2c5e1a;
    border-color: #2c5e1a;
    font-weight: 600;
    border-radius: 6px;
}

.btn-outline-primary:hover {
    background-color: #2c5e1a;
    color: white;
}

.product-card {
    transition: transform 0.3s ease, shadow 0.3s ease;
    border: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.highlight-card {
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.highlight-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.highlight-card .card-title {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #1e4012;
}

.highlight-card .badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 14px;
    background-color: #f0f7ed;
    color: #2c5e1a;
    border-radius: 4px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.newsletter-form .form-control {
    font-family: 'Montserrat', sans-serif;
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 14px 18px;
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    border-color: #2c5e1a;
    box-shadow: 0 0 0 4px rgba(44, 94, 26, 0.1);
}

::placeholder {
    color: #999 !important;
}

.footer-section {
    background-color: #1e4012;
    color: white;
    padding: 60px 0;
}

.footer-section h5,
.footer-section h6 {
    color: #ffffff;
    font-family: 'Lora', serif;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #ffffff !important;
    padding-left: 8px;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
    .hero-bg {
        padding: 80px 0;
    }

    .hero-bg h1 {
        font-size: 2.2rem;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }
}
