

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.header-container {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: rgba(225, 214, 214, 0);
}

.logo a {
    display: flex;
    align-items: center;
    margin-right: 10px;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.logo-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 28px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 5px;
}

.navigation {
    display: flex;
    gap: 35px;
    margin-left: 50px;
}

.navigation a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 15px;
}

.navigation a:hover {
    color: #fc2c2c;
}

.search-container {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 5px;
    flex: 0.9;
}

.search-input {
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 25px;
    flex: 1;
}

.search-button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
}

.search-icon {
    width: 20px;
    height: 20px;
}

.notification-container {
    position: relative;
    margin-left: 20px;
}

.notification-button {
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 5px;
}

.notification-icon {
    width: 30px;
    height: 30px;
}

.notification-dropdown {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 250px;
    height: 400px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 100;
    border-color: #fba69b;
}

.notification-header {
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.notification-content {
    text-align: center;
}

.no-updates-image {
    width: 100px;
    margin-bottom: 10px;
}



.profile-username {
    font-size: 16px;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
}

.profile-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.profile-button {
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}

.profile-container {
    text-align: center;
    margin: 0 auto;
    padding: 10px;
    max-width: 300px; 
}

.profile-header {
    margin-bottom: 10px;
}

.profile-icon {
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    margin: 0 40px 0 40px;    
    width: 30px;
    height: 30px;
}

.profile-name {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #000000; 
    text-align: center;
}

.profile-username {
    font-size: 14px;
    color: #888888; 
    margin-bottom: 20px;
    text-align: center;
}

.profile-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.profile-button {
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}

.profile-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}




.nav-button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    padding: 5px;
}

.nav-button.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: black;
    position: absolute;
    bottom: -5px;
    left: 0;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    padding: 20px;
    box-sizing: border-box;
}


.pin-card {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.pin-card:hover {
    transform: scale(1.05);
}

/* Image styling */
.pin-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Overlay for buttons */
.pin-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
   
}

.pin-card:hover .pin-overlay {
    opacity: 1;
}


.pin-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Buttons styling */
.save-button,
.hide-button {
    margin: 5px;
    padding: 10px 20px;
    background-color: #ff5a5f;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    opacity: 0; /* Hide buttons by default */
    transition: opacity 0.3s ease;
}

/* Show buttons on hover */
.pin-card:hover .save-button,
.pin-card:hover .hide-button {
    opacity: 1;
}

.save-button:hover,
.hide-button:hover {
    background-color: #ff1a1f;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px;
} 


.column {
    flex: 25%;
    max-width: 23%;
    padding: 0 10px;
}

.column img {
    margin-top: 20px;
    vertical-align: middle;
    width: 100%;
}

footer {
    background-color: hsl(0, 100%, 74%);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 40px;
    width: auto;
    background-color: #ffbaba;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-login {
    margin-top: 10px;
}

.login-button {
    background-color: #c7c7c7;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.login-button:hover {
    background-color: #ff4141;
}


@media screen and (max-width: 800px) {
    .column {
        flex: 50%;
        max-width: 50%;
    }
}


@media screen and (max-width: 600px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .navigation {
        margin: 10px 0;
    }

    .search-container {
        width: 100%;
        margin-bottom: 10px;
    }

    .search-input {
        width: calc(100% - 40px);
    }

    .notification-container {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .profile-container {
        margin-left: 0;
        margin-bottom: 10px;
    }
}
