body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.navbar {
    backdrop-filter: blur(10px);
}

.blue-color {
    color: #3786a5;
}

.btn-custom {
    background-color: #af8b66;
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
    text-decoration: none;
}

.btn-custom:hover {
    background-color: #9b7958;
    color: white;
}

.section-light {
    background: #f8f5f2;
}

footer {
    font-size: 0.9rem;
    color: #777;
}

/* Home page */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
    height: 90vh;
}

.hero-slide {
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: white;
    text-align: center;
    width: 90%;
}

.hero h1 {
    font-size: 3rem;
}

.carousel-control-prev,
.carousel-control-next {
    top: auto;
    bottom: 20px;
    width: 50px;
    opacity: 0.7;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.carousel-indicators {
    bottom: 25px;
    z-index: 30;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    margin: 0 6px !important;
    background-color: rgba(255,255,255,0.7) !important;
    border: none !important;
}

.carousel-indicators .active {
    background-color: white !important;
    transform: scale(1.2);
}

.gallery img {
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

.card-stage {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Gallery page */
.gallery-page {
    background: #f8f5f2;
}

.gallery-header {
    padding-top: 130px;
    padding-bottom: 50px;
    background: white;
}

.gallery-card {
    overflow: hidden;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.50);
}
