:root {
    --primary-color: #a67c52;
    --secondary-color: #f5f5f5;
    --text-color: #333;
    --accent-color: #d4af37;
    --background-color: #fff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    background-image: url('https://images.unsplash.com/photo-1602173574767-37ac01994b2a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
header {
    text-align: center;
    padding: 2rem 0;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    letter-spacing: 3px;
}

.tagline {
    font-style: italic;
    color: var(--text-color);
    margin-top: -5px;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
}

.coming-soon {
    text-align: center;
    max-width: 700px;
}

.coming-soon h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.diamond {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    transform: rotate(45deg);
}

.line {
    height: 1px;
    width: 100px;
    background-color: var(--accent-color);
    margin: 0 10px;
}

.coming-soon p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Email Notification Form */
.notification-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

#email-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

button[type="submit"] {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #8a6642;
}

#form-message {
    margin-top: 10px;
    font-style: italic;
}

/* Product Preview Section */
.product-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.preview-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 1.5rem;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-10px);
}

.preview-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.preview-item h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

.social-links {
    margin-bottom: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    transition: transform 0.3s ease, background-color 0.3s;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: var(--accent-color);
}

.contact-info {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.copyright {
    font-size: 0.9rem;
    color: #777;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.preview-item:nth-child(1) {
    animation-delay: 0.3s;
}

.preview-item:nth-child(2) {
    animation-delay: 0.6s;
}

.preview-item:nth-child(3) {
    animation-delay: 0.9s;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .preview-item {
        min-width: 100%;
    }
    
    .line {
        width: 60px;
    }
}

@media screen and (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .coming-soon h2 {
        font-size: 1.8rem;
    }
    
    input[type="email"], button[type="submit"] {
        width: 100%;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }
}
