/* General Styles */
:root {
    --color-nude-rose: #f5e9ea;
    --color-pearl-beige: #d6cfc9;
    --color-powder-mauve: #b288a3;
    --color-dark-gray: #262626;
    --color-pure-white: #ffffff;
    --border-radius-soft: 16px; /* Adjusted for consistency */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Lato', sans-serif;
    color: var(--color-dark-gray);
    background-color: var(--color-pure-white);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-dark-gray);
    margin-bottom: 0.5em;
}

h1 { font-size: 3.5em; }
h2 { font-size: 2.8em; }
h3 { font-size: 2.2em; }
h4 { font-size: 1.8em; }
h5 { font-size: 1.4em; }
h6 { font-size: 1.1em; }

p {
    margin-bottom: 1em;
}

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

a:hover {
    color: var(--color-powder-mauve);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius-soft);
    font-family: 'Inter', 'Lato', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--color-powder-mauve);
    color: var(--color-pure-white);
}

.btn-primary:hover {
    background-color: var(--color-dark-gray);
    color: var(--color-pure-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark-gray);
    border: 1px solid var(--color-dark-gray);
}

.btn-secondary:hover {
    background-color: var(--color-dark-gray);
    color: var(--color-pure-white);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--color-pearl-beige);
    border-radius: var(--border-radius-soft);
    font-family: 'Inter', 'Lato', sans-serif;
    color: var(--color-dark-gray);
    background-color: var(--color-pure-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    border-color: var(--color-powder-mauve);
    outline: none;
    box-shadow: 0 0 0 3px rgba(178, 136, 163, 0.2);
}

/* Sections & Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Shadows & Borders */
.card {
    background-color: var(--color-pure-white);
    border-radius: var(--border-radius-soft);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08); /* Soft shadow */
    padding: 30px;
    margin-bottom: 30px;
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* Background Textures (example for subtle grain) */
.bg-grained {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Hn3AAAAAXNSR0IArs4c6QAAAB9JREFUGFdjZGBgYGBgYGBgYGBgYGBgYGBgYGBgYAAACQAA/wE2/wAAAABJRU5ErkJggg==');
    background-repeat: repeat;
    background-size: 2px 2px;
    opacity: 0.05; /* Very subtle */
}

/* Header & Navigation (basic structure, detailed in responsive.css) */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2em;
    font-weight: bold;
    color: var(--color-dark-gray);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Section (basic structure, detailed in responsive.css) */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-pure-white);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 1;
    position: relative;
}

.hero-content h1 {
    color: var(--color-pure-white);
    font-size: 4.5em;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 40px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Subtle overlay */
    z-index: 0;
}

/* Product Card (basic structure, detailed in components.css) */
.product-card {
    background-color: var(--color-pure-white);
    border-radius: var(--border-radius-soft);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card-image {
    width: 100%;
    height: 300px; /* Fixed height for consistency */
    overflow: hidden;
    position: relative;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05); /* Subtle zoom on hover */
}

.product-card-info {
    padding: 20px;
    text-align: center;
}

.product-card-info h3 {
    font-size: 1.3em;
    margin-bottom: 5px;
}

.product-card-info p {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--color-powder-mauve);
}

/* Footer */
.footer {
    background-color: var(--color-dark-gray);
    color: var(--color-pure-white);
    padding: 60px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links li {
    margin: 0 15px 10px;
}

.footer-links a {
    color: var(--color-pure-white);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-powder-mauve);
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: var(--color-pure-white);
    font-size: 1.5em;
    margin: 0 10px;
    opacity: 0.8;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--color-powder-mauve);
}

/* Scrollbar Styling (for a refined look) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-nude-rose);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-powder-mauve);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-dark-gray);
}