:root {
    --gap-main: 40px;
    --pink: #ff70cf;
    --green: #446A46;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 30px 50px;
}

.abril-fatface {
    font-family: 'Yeseva One', cursive;
}

nav {
    height: 150px;
}

svg.fill-pink path {
    fill: var(--pink);
}

.color-pink {
    color: var(--pink);
}

.color-green {
    color: var(--green);
}

.font-bold {
    font-weight: 700 !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-normal {
    font-weight: 400 !important;
}

.bg-green {
    background-color: var(--green);
}

.bg-pink {
    background-color: var(--pink);
}

.color-white {
    color: white;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-50 {
    opacity: 0.5;
}

.text-tiny {
    font-size: 0.5rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

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

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

.justify-end {
    justify-content: flex-end;
}

.items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.h-full {
    height: 100vh;
}

.w-full {
    width: 100%;
}

.h-5 {
    height: 1.25rem;
}

.h-10 {
    height: 2.5rem;
}

.h-20 {
    height: 5rem;
}

.h-30 {
    height: 7.5rem;
}

.h-40 {
    height: 10rem;
}

.h-logo {
    height: 4.5rem;
}

.h-50 {
    height: 12.5rem;
}

.pt-1 {
    padding-top: 0.25rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-3 {
    padding-top: 0.75rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-5 {
    padding-top: 1.25rem;
}

.pt-10 {
    padding-top: 2.5rem;
}

.pt-20 {
    padding-top: 5rem;
}

.pt-30 {
    padding-top: 7.5rem;
}

.pt-40 {
    padding-top: 10rem;
}

.pt-50 {
    padding-top: 50px;
}

.pl-1 {
    padding-left: 0.25rem;
}

.pl-2 {
    padding-left: 0.5rem;
}

.pl-3 {
    padding-left: 0.75rem;
}

.pl-4 {
    padding-left: 1rem;
}

.pl-5 {
    padding-left: 1.25rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-20 {
    margin-top: 5rem;
}

.mt-30 {
    margin-top: 7.5rem;
}

.mt-40 {
    margin-top: 10rem;
}

.mt-50 {
    margin-top: 12.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.underline {
    text-decoration: underline;
}

.ambiance {
    position: fixed;
    z-index: -1;
    filter: blur(70px);
    transform: scale(0.8);
    overflow: hidden;
    opacity: 0.4;
}

#ambiance-top-left {
    top: -150px;
    left: -300px;
    rotate: 45deg;
}

#ambiance-bottom-right {
    bottom: -100px;
    right: -200px;
    rotate: 45deg;
}

td:nth-child(1) {
    font-weight: 500;
    flex: 1;
}

td:nth-child(2) {
    text-align: right;
}

.grid-main {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--gap-main);
}

.grid {
    display: grid;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gap-10 {
    gap: 10px;
}

.price {
    font-weight: 500;
}

.currency {
    opacity: 0.6;
}

.h-fill {
    height: 100%;
}

.w-200 {
    width: 200px !important
}

.col-span-2 {
    grid-column: span 2;
}

.button {
    padding: 9px 20px;
    display: flex;
    border-radius: 9px;
    background-color: #446A46;
    box-shadow: 0px 2px 10px #446a4643;
    color: white;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
    width: 100%;
    max-width: 180px;
}

.button:hover {
    transform: scale(1.01);
    box-shadow: 0px 2px 20px #446a4653;
}

.button:active {
    transform: scale(0.99);
    box-shadow: 0px 2px 5px #446a4643;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-sm {
    border-radius: 0.125rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 1rem;
}

.rounded-2xl {
    border-radius: 2rem;
}

.rounded-3xl {
    border-radius: 3rem;
}

ul, ol {
    list-style-position: inside;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

li {
    list-style-position: inside;
    padding-left: 0;
    margin-left: 0;
}

li {
    margin-top: 15px; /* Adds gap */
}

.flex-1 {
    flex: 1;
}

.squared-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    box-shadow: 0px 2px 20px #446a4630;
    transition: all 0.2s;
}

.squared-image:hover {
    transform: scale(1.01);
    box-shadow: 0px 2px 30px #446a4643;
}

.squared-image:active {
    transform: scale(0.99);
    box-shadow: 0px 2px 10px #446a4630;
}

.logo {
    height: 5rem;
}

.star-wrapper {
    height: 80px;
    width: 80px;
    padding: 10px;
}

.star {
    width: 100%;
}

.star-anim {
    transform-origin: center;
    animation: rotating 3s linear infinite;
}

.max-w-180 {
    max-width: 180px;
}

table {
    width: 100%;
    table-layout: auto;
    flex: 1;
    display: flex;
    border-collapse: collapse; /* Merges borders and removes spacing */
    border: none; /* Removes any default border */
}

tbody {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

table, th, td {
    border: none; /* Ensures no borders on the table, header cells, and data cells */
    border-spacing: 0; /* Removes any spacing between cells */
}

.text-justify {
    text-align: justify;
}

.big-image {
    object-fit: cover;
    object-position: center;
    max-height: 400px;
}

.pt-in {
    padding-top: 30px;
}

.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media only screen and (max-width: 600px) {
    .logo {
        height: 3rem;
    }

    .ambiance {
        position: fixed;
        z-index: -1;
        filter: blur(80px);
        transform: scale(0.85);
        overflow: hidden;
        opacity: 0.4;
    }
}

@media only screen and (max-width: 1400px) {
    .grid-main {
        grid-template-columns: 1fr;
    }

    body {
        padding: 10px 30px;
        padding-bottom: 30px;
    }

    .map, .big-image {
        min-height: 400px;
    }
    
    .h-logo {
        height: 2.5em;
    }

    .pt-in {
        padding-top: var(--gap-main);
    }

    .big-image {
        max-height: unset;
        height: auto;
        display: block;
        max-width: 100%; 
        max-height: 100%; 
    }

    footer {
        flex-direction: column;
    }

    footer div {
        margin-top: 15px;
    }
}

h1, h2 {
    font-weight: inherit;
    padding: 0;
    margin: 0;
    font-size: inherit;
    display: inline;
}

p {
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 500px) {
    .pl-5 {
        padding-left: 0.5rem;
    }

    .button {
        padding: 10px 15px;
    }

    .min-w-150 {
        min-width: 50px;
    }

    .star-wrapper {
        height: 40px;
        width: 40px;
        padding: 5px;
    }

    body {
        padding: 0px 15px;
        padding-bottom: 30px;
    }
    
    .contacts div {
        margin-top: 10px;
    }
    
    .contacts div:first-child {
        margin-top: 0;
    }
    
    .contact .button {
        width: 100%;
    }

    .contact a {
        max-width: 150px !important;
    }

    .contact a {
        max-width: 150px !important;
    }

    .button svg {
        width: 20px;
        margin-right: 0.3em;
    }
}

.button svg {
    width: 20px;
    height: 20px;
    margin-right: 0.5em;
}


@keyframes flashing {
    0% {
        transform: rotate(0deg) scale(0.9);
        opacity: 0.4;
    }
    25% {
        transform: rotate(90deg) scale(1);
        opacity: 0.35;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.3;
    }
    75% {
        transform: rotate(270deg) scale(1);
        opacity: 0.25;
    }
    100% {
        transform: rotate(360deg) scale(0.9);
        opacity: 0.4;
    }
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

tr {
    flex: 1;
    display: flex;
    justify-content: space-between;
}
