@import url('https://fonts.cdnfonts.com/css/sigmar');
@import url('https://fonts.cdnfonts.com/css/roboto');
@import url('https://fonts.cdnfonts.com/css/geomanist');

:root {
    --blue-color: #43afcf;
    --yellow-color: #f0bd1a;
    --green-color: #80cc28;
    --light-green-color: #C9E8C9;
    --dark-text-color: #484848;
    --dark-text-color2: #023c2a;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Geomanist', sans-serif;
    color: var(--dark-text-color);
}

/* Headings using Sigmar */
h1 {
    font-family: 'Sigmar', cursive;
    color: var(--dark-text-color2);
}

h2 {
    font-family: 'Sigmar', cursive;
    color: var(--dark-text-color);
}

h3,
h4,
h5,
h6 {
    font-family: 'Geomanist', sans-serif;
    color: var(--dark-text-color);
}

/* Paragraphs and other text using Roboto */
p,
button,
.btn,
.navbar a,
.footer p,
.footer a,
label {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-text-color);
}

.logo a img {
    height: 60px;
    width: auto;
}


.backToHomeButton  {
    background-color: var(--yellow-color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.backToHomeButton:hover {
    background-color: var(--yellow-color);
}

.custom-profile-photo img {
    height: 300px;
    width: 300px;
    border: 2px solid var(--yellow-color);
    border-radius: 50%;
    object-fit: cover;
    
}

.userBtn button{
    background-color: var(--yellow-color);
    border-radius: 5px;
    padding: 0 20px;
    color: white;
}

.dreamDestination * {
    margin: 6px;
}

.dreamDestination h2 {
    margin-top: 20px;
}

.imageContainer img {
    height: 60px;
}

#map {
    height: 88%;
    margin-top: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(128, 128, 128, 0.7); 
}

.badge img {
    width: 70px;
    height: 70px;
}

.friendster-post {
    border: 2px solid #ddd;
    background-color: #f9f9f9;
    padding: 16px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.friendster-photo {
    border: 2px solid #aaa;
    border-radius: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.friendster-caption {
    margin-top: 10px;
    font-style: italic;
    color: #666;
}

.friendster-post-time {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #999;
}

/* Style the file input */
.file-upload {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    background-color: #e2e8f0; /* Tailwind bg-gray-300 equivalent */
    border-radius: 8px;
    cursor: pointer;
}

.file-label {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 100%;
    width: 100%;
}

.upload-box {
    color: #4a5568; /* Tailwind text-gray-700 equivalent */
    font-size: 1rem;
}

.upload-box:hover {
    background-color: #cbd5e0; /* Tailwind bg-gray-400 equivalent */
}

.friendster-photo {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.friendster-post {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.friendster-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #2d3748; /* Tailwind text-gray-800 equivalent */
}

.friendster-post-time {
    margin-top: 4px;
    font-size: 0.75rem;
    color: #4a5568; /* Tailwind text-gray-600 equivalent */
}

.delete-photo {
    margin-top: 8px;
    background-color: #e53e3e;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.delete-photo:hover {
    background-color: #c53030;
}
