html {
  font-size: 14px;
}

@media (min-width: 820px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.dropdown-menu {
    background-color: #000000; 
}

.dropdown-item {
    color: #fff; 
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: #333;
         color: #D4AF37;
    }

/* Reset & Fonts */
body, p, ul {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
     color: #D4AF37;
}

body {
    background-color: #1c1c1c;
    color: #fff;
}

/*Home Page*/
.hero-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-image: url('/Pictures/HomeWP.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5vw;
    padding-right: 5vw;
}

.content-container {
    max-width: 600px;
    text-align: left;
    color: white;
}

.center-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/*Nav Bar*/
.logo-img {
    height: 80px;
    width: auto;
    padding: 0;
    padding-right: 30px;
    margin-left: 35px; 
}

.navbar-brand {
    color: #D4AF37 !important;
    font-weight: bold;
    margin-left: 40px;
}

.navbar-nav .nav-link {
    color: white;
    margin-right: 10px;
}
.navbar-custom {
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.btn-outline-primary {
    border-color: #D4AF37;
    color: #D4AF37;
}

    .btn-outline-primary:hover {
        background-color: #D4AF37;
        color: #1c1c1c;
    }

.custom-img {
    height: 300px;
    object-fit: cover;
    width: 100%;
    cursor: pointer;
}

.modal-img {
    max-width: 60%;
    max-height: 70vh;
}

@media (max-width: 820px) {
    .hero-section {
        height: 55vh;
        background-size: cover;
        background-position: top center;
    }

    .hero-overlay {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .content-container {
        margin-top: 100px;
        text-align: left;
        max-width: 100%;
    }

    .center-btn {
        display: block;
        width: fit-content;
        margin-left: 40px;
    }

    .logo-img {
        height: 45px;
        margin: 10px;
    }

    .navbar-custom {
        height: 10vh;
    }

    .navbar-brand {
        margin: 0 !important;
        padding: 0 !important;
    }
        .navbar-brand h3 {
            margin-left: -20px;
            font-size: 1.7rem;
        }

    .container-fluid {
        padding-left: 0 !important;
    }

    .nav-link {
        color: #fff !important;
    }
    .navbar {
        color: #fff !important;
        z-index: 9999;
        position: relative;
    }

    .collapse.navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        padding: 5px;
    }

    .dropdown-menu {
        background-color: #1c1c1c; 
        color: #fff;
    }

    .dropdown-item {
        color: #fff;
    }

        .dropdown-item:hover {
            background-color: #333;
        }

        .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    h1.display-4 {
        font-size: 1.6rem;
    }

    p.lead {
        font-size: 1rem;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-overlay .content-container {
    animation: slideInUp 1.2s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0; 
}

/* Second Section */
.second-section {
            padding: 50px 20px;
            text-align: center;
        }

        .section-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2em;
            margin-bottom: 20px;
        }

        .second-section p {
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .map-container {
    width: 1000px;
    height: 450px;
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin: 0 auto;
    margin-top: 70px;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

/* Social Media */
.social {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #1c1c1c;
}

.social-box {
    position: relative;
    background-image: url('/Pictures/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 10px;
    max-width: 550px;
    min-height: 170px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*border: 1px solid #D4AF37;*/
    /*opacity: 0;*/
    /*transform: translateY(30px);*/
}

.social-box .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
    border-radius: 12px;
}

.social-box > *:not(.overlay) {
    position: relative;
    z-index: 2;
}

.social-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #D4AF37;
    margin-top: 5px;
}

.fb-icon {
    margin-top: 10px;
    width: 40px;
    height: 40px;
}

/*.social-box.visible {
    animation: slideFadeIn 0.8s ease-out forwards;
}*/

@media (max-width: 820px) {
    .social {
        padding: 20px; 
    }

    .second-section {
        padding: 5px;
    }
}

/* Footer */
footer.footer {
    background-color: #000000;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #fff;
    border-top: 1px solid #dee2e6;
}

    footer.footer .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        flex-wrap: wrap;
    }

    footer.footer a {
        color: #D4AF37;
        text-decoration: none;
        margin: 0 10px;
        transition: color 0.3s ease;
    }

        footer.footer a:hover {
            color: #0a58ca;
            text-decoration: underline;
        }

        .page-wrapper {
    min-height: 100vh;
}

        @media (max-width: 820px) {
    footer.footer .container {
        flex-direction: column;
        justify-content: center;
    }
}

 /*Explore*/
.explore {
    background-color: #1c1c1c;
    padding: 0 20px;
    text-align: center;
}

    .explore-heading {
        font-family: 'Cormorant Garamond', serif;
        margin-top: 0;
        margin-bottom: 80px;
    }

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; 
    max-width: 1400px;
    margin: auto;
}

/*.explore-box-wrapper {
    opacity: 0;
    transform: translateY(30px);
}

.explore-box-wrapper.visible {
    animation: slideFadeIn 0.8s ease-out forwards;
}

.explore-box-wrapper:nth-child(1).visible { animation-delay: 0.2s; }
.explore-box-wrapper:nth-child(2).visible { animation-delay: 0.4s; }
.explore-box-wrapper:nth-child(3).visible { animation-delay: 0.6s; }
.explore-box-wrapper:nth-child(4).visible { animation-delay: 0.8s; }*/

.explore-box {
    position: relative;
    background-image: url('/Pictures/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    transform: translateY(0);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    will-change: transform;
    overflow: hidden; 
}

.explore-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: skewX(-20deg);
}
.explore-box:hover::before {
    animation: shine 0.8s forwards;
}
@keyframes shine {
    0% { left: -75%; }
    100% { left: 125%; }
}

.explore-box .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
    border-radius: 12px;
}

.explore-box > *:not(.overlay) {
    position: relative;
    z-index: 2;
}

.explore-box:hover {
    transform: scale(1.06);
}

    .explore-box img {
        width: 100%;
        height: 200px; 
        object-fit: cover;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .explore-box h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #D4AF37;
}

.explore-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px; 
}

.explore-box img {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@keyframes slideFadeIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 820px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px; 
    }

    .explore-box {
        padding: 20px; 
    }

        .explore-box img {
            height: 150px; 
        }

        .explore-box h3 {
            font-size: 1.2rem; 
        }

        .explore-box p {
            font-size: 0.95rem; 
        }

    .btn.btn-lg {
        font-size: 1rem;
        padding: 10px 16px;
    }
}

/*Music*/
.music-instruments {
    background-color: #1c1c1c;
    padding: 0 20px;
    text-align: center;
}

    .music-heading {
        font-family: 'Cormorant Garamond', serif;
        margin-top: 0;
        margin-bottom: 60px;
    }

.music-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; 
    max-width: 1400px;
    margin: auto;
}

#searchInput {
    background-color: #fffbe6;
    color: #1c1c1c;
    border: 2px solid #D4AF37;
    margin-bottom: 40px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #D4AF37;
}

/*.explore-box-wrapper {
    opacity: 0;
    transform: translateY(30px);
}

.explore-box-wrapper.visible {
    animation: slideFadeIn 0.8s ease-out forwards;
}

.explore-box-wrapper:nth-child(1).visible { animation-delay: 0.2s; }
.explore-box-wrapper:nth-child(2).visible { animation-delay: 0.4s; }
.explore-box-wrapper:nth-child(3).visible { animation-delay: 0.6s; }
.explore-box-wrapper:nth-child(4).visible { animation-delay: 0.8s; }*/

.music-box {
    position: relative;
    background-image: url('/Pictures/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    will-change: transform;
}

.music-box .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
    border-radius: 12px;
}

.music-box > *:not(.overlay) {
    position: relative;
    z-index: 2;
}

.music-box:hover {
    transform: scale(1.06);
}

    .music-box img {
        width: 100%;
        height: 250px; 
        object-fit: cover;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .music-box p {
        margin-bottom: 15px; 
    }

@keyframes slideFadeIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 820px) {
    .music-grid {
        grid-template-columns: 1fr;
        gap: 20px; 
    }

    .music-heading {
        margin-bottom: 50px;
    }

    .music-box {
        padding: 20px; 
    }

        .music-box img {
            height: 200px; 
        }

        .music-box h3 {
            font-size: 1.2rem; 
        }

        .music-box p {
            font-size: 0.95rem; 
        }

    .btn.btn-lg {
        font-size: 1rem;
        padding: 10px 16px;
    }
}

/*Decor*/
.decor-products {
    background-color: #1c1c1c;
    padding: 0 20px;
    text-align: center;
}

    .decor-heading {
        font-family: 'Cormorant Garamond', serif;
        margin-top: 0;
        margin-bottom: 60px;
    }

.decor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; 
    max-width: 1400px;
    margin: auto;
}

#searchInput {
    background-color: #fffbe6;
    color: #1c1c1c;
    border: 2px solid #D4AF37;
    margin-bottom: 40px;
}

.card-title {
    color: #D4AF37;
}

/*.explore-box-wrapper {
    opacity: 0;
    transform: translateY(30px);
}

.explore-box-wrapper.visible {
    animation: slideFadeIn 0.8s ease-out forwards;
}

.explore-box-wrapper:nth-child(1).visible { animation-delay: 0.2s; }
.explore-box-wrapper:nth-child(2).visible { animation-delay: 0.4s; }
.explore-box-wrapper:nth-child(3).visible { animation-delay: 0.6s; }
.explore-box-wrapper:nth-child(4).visible { animation-delay: 0.8s; }*/

.decor-box {
    position: relative;
    background-image: url('/Pictures/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    will-change: transform;
}

.decor-box .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
    border-radius: 12px;
}

.decor-box > *:not(.overlay) {
    position: relative;
    z-index: 2;
}

.decor-box:hover {
    transform: scale(1.06);
}

    .decor-box img {
        width: 100%;
        height: 250px; 
        object-fit: cover;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .decor-box p {
        margin-bottom: 15px; 
    }

@keyframes slideFadeIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 820px) {
    .decor-grid {
        grid-template-columns: 1fr;
        gap: 20px; 
    }

    .decor-heading {
        margin-bottom: 50px;
    }

    .decor-box {
        padding: 20px; 
    }

        .decor-box img {
            height: 150px; 
        }

        .decor-box h3 {
            font-size: 1.2rem; 
        }

        .decor-box p {
            font-size: 0.95rem; 
        }

    .btn.btn-lg {
        font-size: 1rem;
        padding: 10px 16px;
    }
}

/*Jewelry*/
.jewelry-products {
    background-color: #1c1c1c;
    padding: 0 20px;
    text-align: center;
}

    .jewelry-heading {
        font-family: 'Cormorant Garamond', serif;
        margin-top: 0;
        margin-bottom: 60px;
    }

.jewelry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; 
    max-width: 1400px;
    margin: auto;
}

#searchInput {
    background-color: #fffbe6;
    color: #1c1c1c;
    border: 2px solid #D4AF37;
    margin-bottom: 40px;
}

.card-title {
    color: #D4AF37;
}

/*.explore-box-wrapper {
    opacity: 0;
    transform: translateY(30px);
}

.explore-box-wrapper.visible {
    animation: slideFadeIn 0.8s ease-out forwards;
}

.explore-box-wrapper:nth-child(1).visible { animation-delay: 0.2s; }
.explore-box-wrapper:nth-child(2).visible { animation-delay: 0.4s; }
.explore-box-wrapper:nth-child(3).visible { animation-delay: 0.6s; }
.explore-box-wrapper:nth-child(4).visible { animation-delay: 0.8s; }*/

.jewelry-box {
    position: relative;
    background-image: url('/Pictures/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    will-change: transform;
}

.jewelry-box .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
    border-radius: 12px;
}

.jewelry-box > *:not(.overlay) {
    position: relative;
    z-index: 2;
}

.jewelry-box:hover {
    transform: scale(1.06);
}

    .jewelry-box img {
        width: 100%;
        height: 250px; 
        object-fit: cover;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .jewelry-box p {
        margin-bottom: 15px; 
    }

@keyframes slideFadeIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 820px) {
    .jewelry-grid {
        grid-template-columns: 1fr;
        gap: 20px; 
    }

    .jewelry-heading {
        margin-bottom: 50px;
    }

    .jewelry-box {
        padding: 20px; 
    }

        .jewelry-box img {
            height: 150px; 
        }

        .jewelry-box h3 {
            font-size: 1.2rem; 
        }

        .jewelry-box p {
            font-size: 0.95rem; 
        }

    .btn.btn-lg {
        font-size: 1rem;
        padding: 10px 16px;
    }
}

/*Equipment*/
.equipment-products {
    background-color: #1c1c1c;
    padding: 0 20px;
    text-align: center;
}

    .equipment-heading {
        font-family: 'Cormorant Garamond', serif;
        margin-top: 0;
        margin-bottom: 60px;
    }

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; 
    max-width: 1400px;
    margin: auto;
}

#searchInput {
    background-color: #fffbe6;
    color: #1c1c1c;
    border: 2px solid #D4AF37;
    margin-bottom: 40px;
}

.card-title {
    color: #D4AF37;
}

/*.explore-box-wrapper {
    opacity: 0;
    transform: translateY(30px);
}

.explore-box-wrapper.visible {
    animation: slideFadeIn 0.8s ease-out forwards;
}

.explore-box-wrapper:nth-child(1).visible { animation-delay: 0.2s; }
.explore-box-wrapper:nth-child(2).visible { animation-delay: 0.4s; }
.explore-box-wrapper:nth-child(3).visible { animation-delay: 0.6s; }
.explore-box-wrapper:nth-child(4).visible { animation-delay: 0.8s; }*/

.equipment-box {
    position: relative;
    background-image: url('/Pictures/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    will-change: transform;
}

.equipment-box .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
    border-radius: 12px;
}

.equipment-box > *:not(.overlay) {
    position: relative;
    z-index: 2;
}

.equipment-box:hover {
    transform: scale(1.06);
}

    .equipment-box img {
        width: 100%;
        height: 250px; 
        object-fit: cover;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .equipment-box p {
        margin-bottom: 15px; 
    }

@keyframes slideFadeIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 820px) {
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 20px; 
    }

    .equipment-heading {
        margin-bottom: 50px;
    }

    .equipment-box {
        padding: 20px; 
    }

        .equipment-box img {
            height: 200px; 
        }

        .equipment-box h3 {
            font-size: 1.2rem; 
        }

        .equipment-box p {
            font-size: 0.95rem; 
        }

    .btn.btn-lg {
        font-size: 1rem;
        padding: 10px 16px;
    }
}

/*Coffee*/
.coffee-products {
    background-color: #1c1c1c;
    padding: 0 20px;
    text-align: center;
}

    .coffee-heading {
        font-family: 'Cormorant Garamond', serif;
        margin-top: 0;
        margin-bottom: 60px;
    }

.coffee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; 
    max-width: 1400px;
    margin: auto;
}

#searchInput {
    background-color: #fffbe6;
    color: #1c1c1c;
    border: 2px solid #D4AF37;
    margin-bottom: 40px;
}

.card-title {
    color: #D4AF37;
}

/*.explore-box-wrapper {
    opacity: 0;
    transform: translateY(30px);
}

.explore-box-wrapper.visible {
    animation: slideFadeIn 0.8s ease-out forwards;
}

.explore-box-wrapper:nth-child(1).visible { animation-delay: 0.2s; }
.explore-box-wrapper:nth-child(2).visible { animation-delay: 0.4s; }
.explore-box-wrapper:nth-child(3).visible { animation-delay: 0.6s; }
.explore-box-wrapper:nth-child(4).visible { animation-delay: 0.8s; }*/

.coffee-box {
    position: relative;
    background-image: url('/Pictures/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    will-change: transform;
}

.coffee-box .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
    border-radius: 12px;
}

.coffee-box > *:not(.overlay) {
    position: relative;
    z-index: 2;
}

.coffee-box:hover {
    transform: scale(1.06);
}

    .coffee-box img {
        width: 100%;
        height: 250px; 
        object-fit: cover;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .coffee-box p {
        margin-bottom: 15px; 
    }

@keyframes slideFadeIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 820px) {
    .coffee-grid {
        grid-template-columns: 1fr;
        gap: 20px; 
    }

    .coffee-heading {
        margin-bottom: 50px;
    }

    .coffee-box {
        padding: 20px; 
    }

        .coffee-box img {
            height: 200px; 
        }

        .coffee-box h3 {
            font-size: 1.2rem; 
        }

        .coffee-box p {
            font-size: 0.95rem; 
        }

    .btn.btn-lg {
        font-size: 1rem;
        padding: 10px 16px;
    }
}

/* Contact */
.contact-section {
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.contact {
    margin-top: 50px;
    margin-bottom: 40px;
    background-color: #1c1c1c;
    padding: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

/*.contact-box-wrapper {
    opacity: 0;
    transform: translateY(30px);
}

.contact-box-wrapper.visible {
    animation: slideFadeIn 0.8s ease-out forwards;
}*/

.contact-box-wrapper:nth-child(1).visible { animation-delay: 0.2s; }
.contact-box-wrapper:nth-child(2).visible { animation-delay: 0.4s; }
.contact-box-wrapper:nth-child(3).visible { animation-delay: 0.6s; }
.contact-box-wrapper:nth-child(4).visible { animation-delay: 0.8s; }

.contact-box {
    position: relative;
    background-image: url('/Pictures/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 410px;
    padding: 20px;
    border-radius: 13px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    text-align: left;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
    transform: translateY(0);
    transition: transform 0.3s ease;
    overflow: hidden; 
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: skewX(-20deg);
}
.contact-box:hover::before {
    animation: shine 0.8s forwards;
}

@keyframes shine {
    0% { left: -75%; }
    100% { left: 125%; }
}

.contact-box .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
    border-radius: 12px;
}

.contact-box > *:not(.overlay) {
    position: relative;
    z-index: 2;
}

    .contact-box:hover {
    transform: scale(1.06);
    /*box-shadow: 0 10px 20px rgba(255, 255, 0, 0.4);*/
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-box h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.5rem;
    color: #D4AF37;
}

.contact-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: -10px;
}

.contact-heading {
    font-family: 'Cormorant Garamond', serif;
    color: #D4AF37;
    margin-top: 20px;
    
}

.fb-icon2 {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.contact-button {
    border-color: #D4AF37;
    color: #D4AF37;
    max-width: 320px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
}

    .contact-button:hover {
        background-color: #D4AF37;
        color: #1c1c1c;
    }
.contact-box p {
    margin-bottom: 35px;
}

@keyframes slideFadeIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 820px) {
    .contact-grid {
        grid-template-columns: 1fr; 
        gap: 30px;
        padding: 0 10px;
    }

    .contact-box {
        min-height: unset;
    }

    .contact-box p {
        margin-top: 5px;;
    }

    .contact-button {
        width: 100%;
    }
}

/*Privacy*/
.privacy-section {
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.privacy-heading {
    font-family: 'Cormorant Garamond', serif;
    color: #D4AF37;
}

@media (max-width: 820px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
