* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url('https://s3.amazonaws.com/gallea.arts.bucket/3c666e00-a3cc-11ec-bffa-cbdce53afff6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: transparent;
}

.nav-left {
    flex: 1;
    position: relative;
}

.logo {
    height: 50px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-shift {
    transform: translateX(100px);
}

.menu-dropdown {
    position: absolute;
    top: 60px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.menu-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-item {
    font-family: 'Bad Script', cursive;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-logo {
    height: 30px;
    width: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-logo {
    opacity: 1;
}

.submenu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.submenu-visible {
    max-height: 200px;
    opacity: 1;
}

.submenu-item {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submenu-logo {
    height: 20px;
    width: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submenu-item:hover .submenu-logo {
    opacity: 1;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.brand-name {
    font-family: 'Bad Script', cursive;
    font-size: 2.5rem;
    font-weight: normal;
    color: #333;
    transform: rotate(-5deg);
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    font-family: 'Bad Script', cursive;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff;
}

.divider {
    color: #ccc;
}

main {
    padding: 2rem;
    min-height: calc(100vh - 150px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.polaroid-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem;
}

.polaroid {
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.polaroid:nth-child(1) {
    transform: rotate(-5deg);
}

.polaroid:nth-child(2) {
    transform: rotate(3deg);
}

.polaroid:nth-child(3) {
    transform: rotate(-3deg);
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 12px 40px rgba(0, 0, 0, 0.22);
    z-index: 10;
}

.polaroid-image {
    width: 250px;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

.polaroid-image img,
.polaroid-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.polaroid-caption {
    font-family: 'Bad Script', cursive;
    text-align: center;
    padding: 1rem 0.5rem 0.5rem;
    font-size: 1.2rem;
    color: #333;
    min-height: 50px;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    background-color: transparent;
    gap: 250px;
}

.footer-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #333;
}

.instagram-logo {
    display: flex;
    justify-content: center;
}

.instagram-logo svg {
    width: 40px;
    height: 40px;
    color: #333;
}
