
.custom-navbar {
            background-color: #DEAC80;
            padding: 1rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .navbar-brand img {
            height: 50px;
            width: auto;
        }
        
        .navbar-nav .nav-link {
            color: #000 !important;
            font-size: 1.1rem;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: #8B4513 !important;
        }
        
        .navbar-nav .nav-link.active {
            color: #8B4513 !important;
            font-weight: 600;
        }
        
        .btn-share {
            font-family: 'Abhaya Libre', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            border-color: #000;
            color: #000;
            transition: all 0.3s ease;
        }
        
        .btn-share:hover {
            background-color: #000;
            color: white;
            border-color: #000;
        }
        
        .navbar-icons {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .navbar-icons img {
            width: 24px;
            height: 24px;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }
        
        .navbar-icons img:hover {
            opacity: 0.7;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .btn-share {
                margin: 0.5rem 0;
                width: 100%;
            }
            
            .navbar-icons {
                justify-content: center;
                margin-top: 0.5rem;
            }
        }
        
        /* Content styles for demo */
        .content-section {
            padding: 2rem 0;
        }
        
        .popular-search-title {
            font-family: 'Abhaya Libre', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            font-size: 1.8rem;
            margin: 3rem 0 2rem 0;
            font-weight: 600;
        }
        
        .recipe-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .recipe-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .carousel-item img {
            height: 400px;
            object-fit: cover;
        }
        
        footer {
    background-color: #DEAC80;
    padding: 40px 0 20px 0;
    margin-top: 60px;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-text {
    flex: 1;
}

.footer-text p {
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
    color: #333;
    text-align: justify;
}

.footer-right {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    min-width: 200px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Responsive untuk tablet */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-right {
        text-align: center;
        min-width: auto;
    }
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    footer {
        padding: 30px 0 15px 0;
        margin-top: 40px;
    }
    
    .footer-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .footer-text p {
        text-align: center;
        font-size: 13px;
    }
    
    .footer-right {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 10px;
    }
    
    .footer-logo img {
        width: 80px;
    }
    
    .footer-text p {
        font-size: 12px;
    }
    
    .footer-right {
        font-size: 15px;
    }
}

.ft{
    margin-left: 5rem;
    margin-top: 3rem;
    width: 40%;
    height: 50%;
    background-color: #777;
    
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: 180px;
}
.gallery-item:hover {
  border: 1px solid #777;
}
.gallery-item img {
  width: 100%;
  height: auto;
}
.gallery-item div.desc {
  padding: 15px;
  text-align: center;
}
.back-button {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: #000;
            margin: 2rem 0 1rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
.recipe-header {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
            align-items: flex-start;
        }

        .recipe-image {
            flex: 0 0 400px;
            border-radius: 15px;
            overflow: hidden;
        }

        .recipe-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .recipe-info {
            flex: 1;
        }

.recipe-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2C1810;
        }

        .recipe-author {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .recipe-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .action-button {
            background: none;
            border: none;
            padding: 0.5rem;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        .action-button:hover {
            background-color: #f0f0f0;
        }

        .recipe-description {
            background-color: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .comment-section {
            background-color: #B5C18E;
            border-radius: 20px;
            padding: 0.5rem 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .img-fluid2{
            width: 30vw;
            height: 55vh;
            margin-left: 2rem; 
            margin-top: 1rem;
        }



.sample-image {
    width: 200px;
    height: 150px;
    background-color: #c0c0c0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #666;
    font-size: 16px;
    flex-shrink: 0;
    
}

.title-input {
    flex: 1;
}

.title-field {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.title-field:focus {
    border-color: #4CAF50;
}

.image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.image-placeholder {
    width: 200px;
    height: 150px;
    background-color: #c0c0c0;
    border: 2px dashed #999;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background-color: #b5b5b5;
    border-color: #777;
}

.plus-icon {
    font-size: 40px;
    color: #333;
    font-weight: bold;
}

.description-btn {
    padding: 10px 20px;
    background-color: #e8f5e8;
    border: 1px solid #a5d6a7;
    border-radius: 20px;
    color: #2e7d32;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.description-btn:hover {
    background-color: #c8e6c9;
    border-color: #81c784;
}

/* Share Section */
.share-section {
    text-align: center;
}

.share-btn2 {
    padding: 15px 30px;
    background-color: #a8d4a8;
    border: none;
    border-radius: 25px;
    color: #2e5d2e;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn2:hover {
    background-color: #96c896;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .sample-image {
        width: 100%;
        max-width: 300px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-placeholder {
        width: 100%;
        max-width: 250px;
    }
    
    .description-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}



.login{
border: 1px solid black ;
width : 400px;
height : 500px
/* background: url('back') */
color  white;
box-shadow: 0px 0px 20px rgba(0,0,0,0.75);
background-size :cover;
background-position : center;
overflow: hidden;
}
form{ 
display: block;
box-sizing: border-box;
display: block;
box-sizing: border-box;
padding: 40px;
width:100%;
height: 100%;
backdrop-filter:brightness(40%);
flex-direction: column;
display: flex;
gap: 5px;
}

.h1 {
font-weight: normal;
font-size: 24px;
text-shadow: 0px 0px 2px rgba(0,0,0,0.5);
margin-bottom: 60px;
}

label{
color: rgba(255, 255, 255, 0.8);
font-size: 20px;
letter-spacing: 2px;
padding-left: 10px;
}

input{
background: rgba(255, 255, 255, 0.3);
height: 40px;
line-height:40px;
border-radius: 20px;
padding: 0px 20px;
border: none;
margin-bottom: 20px;
color: white;
}

button{
background: rgb(45, 126, 231);
height: 40px;
line-height: 40px;
border-radius:40px;
border:none;
margin: 10px 0px;
box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
color: white;
}