* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
}

.heading-font {
    font-family: 'Playfair Display', serif;
}

.hero-section {
    height: 100vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-bg {
    min-height: 80vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.overlay-dark {
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.feature-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.gallery img {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.gallery img:hover {
    transform: scale(1.05);
}

.text-gold {
    color: #d4af37;
}

.bg-dark-card {
    background: rgba(15,15,15,0.9);
    backdrop-filter: blur(10px);
}

.animate-fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.details-hidden {
    display: none;
}

.details-visible {
    display: block;
    animation: slideDown 0.5s ease-in-out;
}

@keyframes slideDown {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 500px; }
}

.hero-section, .section-bg {
    background-attachment: local !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-tile {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.photo-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-tile:hover img {
    transform: scale(1.1);
}

.photo-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(226, 125, 67, 0.8), rgba(200, 105, 58, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.photo-tile:hover::before {
    opacity: 1;
}

.photo-tile-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-tile:hover .photo-tile-overlay {
    opacity: 1;
}
@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .photo-tile:nth-child(9){
        display:none;
    }
}
@media (max-width: 370px) {
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}