/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: radial-gradient(circle, #fff8e6, #f4d7a5);
    color: #333;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Header */
header {
    background: linear-gradient(145deg, #b8895d, #d1a575);
    color: #fff;
    padding: 50px 20px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

header .logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 3.5rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 2px;
}

header p {
    margin-top: 15px;
    font-size: 1.3rem;
    font-family: 'Roboto', sans-serif;
    opacity: 0.9;
}

header .lang {
    margin-top: -20px;
    font-size: 1.0rem;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
    align-items: right;
    align-content: right;
    text-align: right;
    opacity: 0.7;
}

header a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: normal;
}

/* Intro Section */
.intro {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.bottle-container {
    position: relative;
}

.bottle-container img {
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottle-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.intro .content {
    max-width: 500px;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
}

.intro .content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

button {
    padding: 12px 25px;
    font-size: 1.1rem;
    color: #fff;
    background: linear-gradient(145deg, #b8895d, #d1a575);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

button:hover {
    background: linear-gradient(145deg, #d1a575, #b8895d);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 1rem;
    color: #555;
    text-align: center;
}

footer a {
    color: #b8895d;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}