/* Base Styles & Variables */
:root {
    --primary-color: #A58C55; /* Gold */
    --secondary-color: #D4AF37; /* Lighter Gold/Yellow */
    --background-color: #0A0A0A; /* Deep Black */
    --text-color: #FFFFFF; /* White */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Playfair Display', serif;
    --gold-glow: 0 0 15px rgba(165, 140, 85, 0.6), 0 0 25px rgba(212, 175, 55, 0.4);
}

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

body {
    font-family: var(--body-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

button {
    font-family: var(--body-font);
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    padding: 0.8rem 1.8rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 50%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

button:hover::before {
    transform: translateX(0);
}

button:hover {
    background-color: var(--secondary-color);
    box-shadow: var(--gold-glow);
    transform: translateY(-3px);
}

.hidden {
    display: none;
}

/* Special CSS Effect: Ambient Glow */
.glow-effect {
    box-shadow: var(--gold-glow);
}

/* Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 1.5rem 3rem;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0) 100%);
    backdrop-filter: blur(5px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

nav .logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 3rem;
}

nav ul li a {
    color: var(--text-color);
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
    box-shadow: var(--gold-glow);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
    left: 0;
}

/* Fullscreen Split Layout */
.fullscreen-split {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    background-color: var(--background-color);
}

.hero-image {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1579031458491-95b84374f661?ixlib=rb-4.0.3&auto=format&fit=crop&w=1050&q=80'); /* Single rose image */
    background-size: cover;
    background-position: center;
    filter: brightness(0.7); /* Subtle dimming for text contrast */
    transform: scale(1.05); /* Slight zoom for effect */
    transition: transform 5s ease-out; /* Parallax-like effect */
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards 0.5s;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

/* Section Styling */
main section {
    padding: 6rem 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Scroll Fade-in Effect for Sections */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Title Embellishments */
h2::before,
h2::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: var(--gold-glow);
    top: 50%;
    transform: translateY(-50%);
}

h2::before {
    left: -30px;
}

h2::after {
    right: -30px;
}

/* Story Section */
.story-section {
    background-color: var(--background-color);
    max-width: 800px;
    margin: 5rem auto;
    padding: 6rem 3rem;
    text-align: center;
}

.story-section h2 {
    margin-bottom: 2.5rem;
}

.story-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
}

.expand-button {
    margin-top: 2rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    font-weight: bold;
}

.full-narrative {
    margin-top: 2rem;
    text-align: left;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out, opacity 0.8s ease-in-out, margin-top 0.8s ease-in-out;
}

.full-narrative.visible {
    max-height: 500px; /* Adjust as needed */
    opacity: 1;
    margin-top: 2rem;
}

.full-narrative p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Gallery Section */
.gallery-section {
    background-color: rgba(255, 255, 255, 0.03); /* Subtle background variation */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease-out, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1); /* Subtle bloom effect on hover */
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(165, 140, 85, 0.1) 0%, rgba(212, 175, 55, 0.2) 50%, rgba(165, 140, 85, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item {
    box-shadow: none; /* No borders as per requirement */
}

/* Services Section */
.services-section {
    background-color: var(--background-color);
    padding: 6rem 3rem;
}

.services-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-bottom: 4rem;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(165, 140, 85, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: var(--gold-glow);
}

.service-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Collections Section */
.collections-section {
    background-color: rgba(255, 255, 255, 0.03);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-item {
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.collection-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
    transition: transform 0.5s ease, filter 0.3s ease;
}

.collection-item h3 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-color);
    font-size: 1.8rem;
    background-color: rgba(10, 10, 10, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.collection-item:hover .collection-image {
    transform: scale(1.05);
    filter: brightness(1);
}

.collection-item:hover h3 {
    background-color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    background-color: var(--background-color);
    padding: 6rem 3rem;
}

.contact-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-bottom: 3rem;
}

#inquiry-form {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: var(--body-font);
    padding: 1rem;
    border: 1px solid rgba(165, 140, 85, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--gold-glow);
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    align-self: center;
    margin-top: 2rem;
}

#form-confirmation {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
    padding: 2rem;
    border: 1px dashed var(--secondary-color);
    max-width: 700px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#form-confirmation::before {
    content: '🌸'; /* Placeholder for delicate blossom graphic */
    position: absolute;
    font-size: 3rem;
    opacity: 0.5;
    animation: fadeFloat 3s infinite ease-in-out;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    header {
        padding: 1.5rem 2rem;
    }
    nav ul li {
        margin-left: 1.5rem;
    }
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-content {
        padding: 3rem;
    }
    .fullscreen-split {
        flex-direction: column;
    }
    .hero-image-container {
        height: 50vh;
    }
    .hero-content {
        height: 50vh;
        align-items: center;
        text-align: center;
    }
    h2::before, h2::after {
        display: none; /* Hide embellishments on smaller screens for simplicity */
    }
    .story-section, .services-section, .contact-section {
        padding: 4rem 1.5rem;
    }
    .gallery-grid, .service-items, .collection-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 400px;
    }
    .collection-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav ul li {
        margin: 0.5rem 1rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .form-group input, .form-group textarea, .form-group select {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }
    nav ul li {
        margin: 0.3rem 0.5rem;
        font-size: 1rem;
    }
    h1 {
        font-size: 2rem;
    }
    .hero-content {
        padding: 2rem;
    }
    section {
        padding: 3rem 1rem;
    }
    .gallery-item img, .collection-image {
        height: 300px;
    }
    .submit-button {
        width: 100%;
    }
}