/* ============================================
   Index Page - Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/Photos/Store.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #b5a165;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background-color: #9e8c56;
    transform: translateY(-2px);
}

/* ============================================
   Index Page - Split Sections
   ============================================ */
.sections {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 3% 20%;
    background-color: #fff;
}

.split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.split.reverse {
    flex-direction: row-reverse;
}

.image img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.text {
    flex: 1;
    min-width: 280px;
}

.text h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.text p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.link {
    font-weight: bold;
    text-decoration: none;
    color: #b5a165;
    transition: color 0.3s ease;
}

.link:hover {
    color: #333;
}

img#indexphoto {
    border-radius: 0px;
}

/* ============================================
   Index Page - Responsive
   ============================================ */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .sections {
        gap: 60px;
        padding: 0 0 0 0;
    }

    .split,
    .split.reverse {
        gap: 0px;
        flex-direction: column;
        text-align: center;
    }

    .text {
        order: 2;
    }

    .text p {
        margin-bottom: 10px;
    }

    .image {
        order: 1;
    }
}
