/* 
 * FISIE - Custom Styles 
 * Theme: Brown Gradient & Gold Accent
 */

:root {
    --primary-brown: #3e2723;
    --secondary-brown: #5d4037;
    --light-brown: #d7ccc8;
    --gold: #d4af37;
    --gold-hover: #b4942d;
    --dark-overlay: rgba(30, 20, 15, 0.75);
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    
    --gradient-main: linear-gradient(135deg, #2b1b17 0%, #4e342e 50%, #795548 100%);
    --gradient-gold: linear-gradient(135deg, #f0c14b 0%, #d4af37 100%);
}

body {
    font-family: var(--font-sans);
    color: #333;
    padding-top: 76px; /* Offset for fixed navbar */
    background-color: #fcfbfb;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
}

/* Utilities */
.text-gold { color: var(--gold) !important; }
.bg-dark-brown { background-color: #2b1b17; }
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }

/* Navbar Customization */
.bg-custom-gradient {
    background: var(--gradient-main);
}
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--gold);
}

/* Buttons */
.btn-gold {
    background: var(--gradient-gold);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark-overlay);
    background: linear-gradient(to bottom, rgba(43, 27, 23, 0.6), rgba(43, 27, 23, 0.9));
}
.hero-content {
    position: relative;
    z-index: 2;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    background: #fff;
    border-bottom: 3px solid transparent;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(93, 64, 55, 0.15);
    border-bottom-color: var(--gold);
}
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 2rem;
}
.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Hover effects */
.hover-gold:hover { color: var(--gold) !important; transition: color 0.2s; }
.hover-zoom img { transition: transform 0.5s ease; }
.card:hover .hover-zoom img { transform: scale(1.05); }

/* Features Icon */
.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    margin-bottom: 1rem;
    transition: background 0.3s ease;
}
.card:hover .feature-icon {
    background: var(--gold);
    color: white;
}
