@font-face {
    font-family: 'Noir et Blanc';
    src: url('../fonts/noiretblanc-webfont.woff2') format('woff2'),
         url('../fonts/noiretblanc-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Noir et Blanc';
    src: url('../fonts/noiretblanc_italic-webfont.woff2') format('woff2'),
         url('../fonts/noiretblanc_italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Noir et Blanc';
    src: url('../fonts/noiretblanc_medium-webfont.woff2') format('woff2'),
         url('../fonts/noiretblanc_medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Noir et Blanc';
    src: url('../fonts/noiretblanc_med_italic-webfont.woff2') format('woff2'),
         url('../fonts/noiretblanc_med_italic-webfont.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Noir et Blanc';
    src: url('../fonts/noiretblanc_medium_bold-webfont.woff2') format('woff2'),
         url('../fonts/noiretblanc_medium_bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Noir et Blanc';
    src: url('../fonts/noiretblanc_med_bold_italic-webfont.woff2') format('woff2'),
         url('../fonts/noiretblanc_med_bold_italic-webfont.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'HK Grotesk';
    src: url('../fonts/hk-grotesk/HKGrotesk-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HK Grotesk';
    src: url('../fonts/hk-grotesk/HKGrotesk-Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'HK Grotesk';
    src: url('../fonts/hk-grotesk/HKGrotesk-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'HK Grotesk';
    src: url('../fonts/hk-grotesk/HKGrotesk-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --bg-color: #F3F2E1;
    --text-color: #353535;
    --accent-color: #d4af37; /* Gold for a touch of luxury */
    --border-color: #353535;
    --font-serif: "Noir et Blanc", Georgia, serif;
    --font-sans: "Helvetica", "Arial", sans-serif;
    --font-editorial: 'HK Grotesk', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

nav {
    margin-bottom: 4rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-color);
}

main {
    min-height: 60vh;
}

h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 2rem;
    text-align: center;
}

section, article {
    margin-bottom: 4rem;
    text-align: center;
}

p {
    max-width: 600px;
    margin: 0 auto 1rem auto;
}

.hero {
    padding: 6rem 0;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.field {
    margin-bottom: 1.5rem;
}

.field label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.field input, .field textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    background: transparent;
    font-family: inherit;
}

button {
    background-color: var(--text-color);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    width: 100%;
    transition: background-color 0.3s;
}

button:hover {
    background-color: var(--accent-color);
}

footer {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

/* Home Page Editorial Styles */
.home-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
    text-align: center;
}

.home-hero img {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-bottom: 3rem;
}

.inquire-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 4rem;
}

.circle-indicator {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--text-color);
    border-radius: 50%;
}

.editorial-title {
    font-family: var(--font-serif);
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 80px;
}

.divider {
    width: 40px;
    height: 1px;
    background-color: var(--text-color);
    margin: 2rem auto;
}

.editorial-subtitle {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-color);
}


/* Roses Collection Section Styles */
.roses-collection {
    max-width: 1200px;
    margin: auto;
    padding: 140px 60px;
    text-align: center;
}

.roses-title {
    font-family: 'Noir et Blanc', serif;
    font-size: 32px;
    margin-bottom: 60px;
}

.roses-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    margin-bottom: 40px;
}

.roses-list {
    list-style: none;
    padding: 0;
    font-family: 'Noir et Blanc', serif;
    font-size: 24px;
    line-height: 1.8;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.roses-description {
    font-family: 'HK Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    max-width: 500px;
    margin: auto;
    margin-bottom: 30px;
}

.roses-inquire {
    color: #B3907A;
    font-family: 'HK Grotesk', sans-serif;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}


/* Product Detail Section Styles */
.product-detail {
    max-width: 1200px;
    margin: auto;
    padding: 140px 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.product-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.product-edition {
    font-family: 'HK Grotesk', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
}

.product-name {
    font-family: 'Noir et Blanc', serif;
    font-size: 28px;
    margin-top: 10px;
}

.product-price {
    color: #B3907A;
    font-family: 'HK Grotesk', sans-serif;
    font-size: 16px;
    margin-top: 10px;
}

.product-description {
    font-family: 'HK Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 420px;
}

.product-actions {
    margin-top: 30px;
}

.product-actions a {
    display: block;
    margin-bottom: 10px;
    font-family: 'HK Grotesk', sans-serif;
    color: #353535;
}

/* Personalization Form Styles */
.personalize-page {
    max-width: 900px;
    margin: auto;
    padding: 140px 60px;
}

.personalize-title {
    font-family: 'Noir et Blanc';
    font-size: 32px;
    text-align: center;
    margin-bottom: 60px;
}

.form-section {
    margin-bottom: 40px;
}

.form-label {
    font-family: 'HK Grotesk';
    font-size: 14px;
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #353535;
    padding: 10px 0;
    font-family: 'HK Grotesk';
}

.color-options {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.color-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #353535;
    cursor: pointer;
}

.form-textarea {
    width: 100%;
    border: 1px solid #353535;
    padding: 10px;
    font-family: 'HK Grotesk';
    height: 120px;
}

.form-button {
    margin-top: 40px;
    background: #B3907A;
    color: white;
    border: none;
    padding: 14px 30px;
    font-family: 'HK Grotesk';
    cursor: pointer;
}

/* Bag Page Styles */
.bag-page {
    max-width: 900px;
    margin: auto;
    padding: 140px 60px;
}

.bag-title {
    font-family: 'Noir et Blanc';
    font-size: 32px;
    text-align: center;
    margin-bottom: 60px;
}

.bag-text {
    font-family: 'HK Grotesk';
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bag-section {
    margin-bottom: 40px;
}

.bag-button {
    margin-top: 40px;
    background: #B3907A;
    color: white;
    border: none;
    padding: 14px 30px;
    font-family: 'HK Grotesk';
    cursor: pointer;
}


/* Checkout Page Styles */
.checkout-page {
    max-width: 1000px;
    margin: auto;
    padding: 140px 60px;
}

.checkout-title {
    font-family: 'Noir et Blanc';
    font-size: 32px;
    text-align: center;
    margin-bottom: 60px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.checkout-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #353535;
    padding: 10px 0;
    margin-bottom: 20px;
    font-family: 'HK Grotesk';
}

.checkout-summary {
    font-family: 'HK Grotesk';
    font-size: 14px;
    line-height: 1.8;
}

.checkout-button {
    margin-top: 40px;
    background: #B3907A;
    color: white;
    border: none;
    padding: 14px 30px;
    font-family: 'HK Grotesk';
    cursor: pointer;
}

/* Confirmation Page Styles */
.confirmation-page {
    max-width: 900px;
    margin: auto;
    padding: 140px 60px;
    text-align: center;
}

.confirmation-title {
    font-family: 'Noir et Blanc';
    font-size: 36px;
    margin-bottom: 40px;
}

.confirmation-text {
    font-family: 'HK Grotesk';
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.confirmation-details {
    margin-top: 60px;
    text-align: left;
}

.confirmation-details p {
    font-family: 'HK Grotesk';
    font-size: 14px;
    margin-bottom: 10px;
}

/* Admin Table Styles */
.admin-container {
    max-width: 1200px;
    margin: auto;
    padding: 120px 60px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    font-family: 'HK Grotesk';
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

.admin-table td {
    padding: 10px;
    font-family: 'HK Grotesk';
    border-bottom: 1px solid #eee;
}
