@import url('index.css');
body {
    font-family: 'Times New Roman', Times, serif;
}
/* Add page-specific styles for HexaGallery here */

.slider-container {
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
}
.slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    background: #222;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 0.5s;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30,30,30,0.8);
    color: #ff4c4c;
    border: none;
    font-size: 2.5rem;
    padding: 0.3em 0.7em;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.slider-arrow.left {
    left: 10px;
}
.slider-arrow.right {
    right: 10px;
}
.slider-arrow:hover {
    background: #ff4c4c;
    color: #fff;
}
