.font-serif {
    font-family: "Playfair Display", serif;
}
.font-sans {
    font-family: "Inter", sans-serif;
}
.font-classical {
    font-family: "Alex Brush", cursive;
}
.font-script {
    font-family: "Kaushan Script", cursive;
}
.bg-honey {
    background: linear-gradient(135deg, #f7f3e9 0%, #f1e6d3 50%, #e8d5b7 100%);
}
.text-honey {
    color: #8b5a2b;
}
.border-honey {
    border-color: #d4a574;
}
.bg-honey-light {
    background-color: #f9f6f0;
}
.text-cream {
    color: #f7f3e9;
}
.text-dark-honey {
    color: #5d3a1a;
}
.bg-dark-honey {
    background-color: #8b5a2b;
}
.hover-subtle {
    transition: all 0.3s ease;
}
.hover-subtle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 90, 43, 0.4);
}

/* Text Shadow */
.text-shadow-lg {
    text-shadow: 2px 2px 4px rgba(139, 90, 43, 0.3);
}

/* Gallery Styles */
.gallery-item {
    transition: all 0.3s ease;
}
.gallery-item:hover {
    transform: scale(1.05);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}
.modal-content {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}
.close:hover {
    color: #f7f3e9;
}
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-nav:hover {
    background: rgba(139, 90, 43, 0.8);
    transform: translateY(-50%) scale(1.1);
}
.modal-nav.prev {
    left: 20px;
}
.modal-nav.next {
    right: 20px;
}
.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}
@media (max-width: 768px) {
    .modal-nav {
        font-size: 20px;
        padding: 12px 15px;
        width: 50px;
        height: 50px;
    }
    .modal-nav.prev {
        left: 10px;
    }
    .modal-nav.next {
        right: 10px;
    }
    .close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
}

/* Safe Area Utilities for Mobile */
.safe-area-inset {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.pb-safe {
    padding-bottom: env(safe-area-inset-bottom);
}
