﻿body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #404040; /* Warm Beige */
    color: white; /* Charcoal */
}

.container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image {
    flex: 1;
}

    .image img {
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }

.description {
    flex: 2;
}

@media (max-width: 600px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Dropdown container */
.dropdown {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
}

/* Button */
.dropbtn {
    background-color: #b5651d;
    color: white;
    padding: 10px 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        /* Hover effects */
        .dropdown-content a:hover {
            background-color: #b5651d;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #b5651d;
}

