@font-face {
    font-family: "DarumadropOne";
    src: url("/fonts/DarumadropOne-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Questrial";
    src: url("/fonts/Questrial-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #f03461;
    --radius: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Questrial", serif;
    background-color: #fafafa;
    color: #2c2c2c;
    line-height: 1.8;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    border-bottom: 1px solid #e0e0e0;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.navbar ul li a {
    color: var(--primary-color);
}

.brand {
    font-family: "DarumadropOne", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
}

.main-content {
    flex: 1;
    padding: 4rem 0;
}

.intro {
    margin-bottom: 4rem;
}

.description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: #555;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item-price {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    background-color: var(--primary-color);
    padding: 0.5rem;
    font-family: "DarumadropOne";
    font-size: 1.5rem;
    border-bottom-right-radius: var(--radius);
}

a.gallery-item {
    cursor: pointer;
}

.gallery-item {
    position: relative;
    padding: 0;
    background-color: var(--primary-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
    transition:
        opacity 0.6s,
        transform 0.6s,
        box-shadow 0.6s !important;
}

.gallery-item:hover {
    border-color: #fff;
    transform: translate(5px, -5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item .gallery-item-text {
    padding: 1.5rem;
    text-align: center;
}

.gallery-item .gallery-item-text h3 {
    font-family: "DarumadropOne", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
}

.markets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.markets-item {
    padding: 0;
    background-color: var(--primary-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
    text-decoration: none;
    cursor: pointer;
    transition:
        opacity 0.6s,
        transform 0.6s,
        box-shadow 0.6s !important;
}

.markets-item p {
    color: white;
}

.markets-item:hover {
    border-color: #fff;
    transform: translate(5px, -5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.markets-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.markets-item .markets-item-text {
    padding: 1.5rem;
    text-align: center;
}

.markets-item .markets-item-text h3 {
    font-family: "DarumadropOne", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.social {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}

.social-arrow {
    animation: bounce 1.5s ease infinite;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--primary-color);
    color: #fff;
    font-family: "DarumadropOne", sans-serif;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition:
        opacity 0.6s,
        transform 0.6s,
        box-shadow 0.6s !important;
}

.instagram-link:hover {
    transform: translate(2px, -2px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.instagram-link:hover .link-arrow {
    transform: translateX(5px);
}

.link-arrow {
    transition: transform 0.3s ease;
}

.footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .brand {
        font-size: 2rem;
    }

    .header {
        padding: 2rem 0;
    }

    .main-content {
        padding: 2rem 0;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .description {
        font-size: 1rem;
    }
}
