@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.gold-bg {
    background-color: #D4AF37;
}

.gold-text {
    color: #D4AF37;
}

.transition-all {
    transition: all 0.3s ease;
}

.shadow-gold {
    box-shadow: 0 4px 6px rgba(212, 175, 55, 0.3);
}

.shadow-red {
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.3);
}

/* Animation for buttons */
.btn-animate {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-animate:hover {
    transform: translateY(-2px);
}

/* Custom underline */
.custom-underline {
    position: relative;
    display: inline-block;
}

.custom-underline:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #D4AF37;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.custom-underline:hover:after {
    transform: scaleX(1);
}

/* Responsive image containers */
.img-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b7952e;
}