body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* White background */
    color: #333333; /* Dark gray text */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c9a96e; /* Luxurious gold accent */
}

/* --- HEADER & NAVIGATION --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 30px 50px;
    border-bottom: 1px solid #f0f0f0;
}

.header-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.header-left img {
    height: 35px;
    width: auto;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-center h1 {
    margin: 0;
    font-size: 26px;
    letter-spacing: 6px;
    font-weight: 300;
    text-transform: uppercase;
    color: #1a1a1a;
}

.header-right {
    flex: 2;
    display: flex;
    justify-content: flex-end;
}

.header-right nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.header-right nav ul li {
    position: relative;
    margin-left: 25px;
}

.header-right nav ul li a {
    color: #333333;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    display: block;
}

.header-right nav ul li a:hover {
    color: #c9a96e;
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.05);
    z-index: 10;
    border-top: 2px solid #c9a96e;
    flex-direction: column;
}

.dropdown-content li {
    margin: 0 !important;
    border-bottom: 1px solid #fcfcfc;
}

.dropdown-content li:last-child {
    border-bottom: none;
}

.dropdown-content li a {
    padding: 15px 20px !important;
    font-size: 11px !important;
    color: #555555;
    letter-spacing: 2px;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

/* --- BUTTONS --- */
.btn, .btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #1a1a1a;
    padding: 15px 45px;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 3px;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover, .btn-outline:hover {
    background-color: #c9a96e;
    color: #ffffff;
    border-color: #c9a96e;
}

/* --- GENERIC SECTIONS --- */
.content {
    text-align: center;
    min-height: 60vh;
}

section {
    max-width: 1000px;
    margin: 0 auto;
}

section h2 {
    font-size: 28px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 25px;
    color: #1a1a1a;
}

section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

/* --- HOMEPAGE STYLES --- */
.home-wrapper section {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    text-align: center;
}

.hero-image {
    width: 100%;
    height: 85vh; /* Larger image height for luxury feel */
    object-fit: cover;
    display: block;
    background-color: #faf9f5;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 70px 100px;
    text-align: center;
}

.hero-text h2 {
    font-size: 42px !important;
    margin: 0 0 20px 0 !important;
    letter-spacing: 8px !important;
    color: #1a1a1a !important;
}

.hero-text p {
    font-size: 16px !important;
    margin-bottom: 40px !important;
    letter-spacing: 3px;
    color: #555555 !important;
}

/* Featured Collections */
.featured-section {
    padding: 120px 50px !important;
    background-color: #ffffff;
    text-align: center;
}

.featured-section h2 {
    margin-bottom: 80px !important;
    position: relative;
    padding-bottom: 20px;
}

.featured-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: #c9a96e; /* Gold line */
}

.featured-images {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-item {
    flex: 1;
}

.featured-item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    margin-bottom: 25px;
    background-color: #faf9f5;
    transition: opacity 0.3s ease;
}

.featured-item img:hover {
    opacity: 0.85;
}

.featured-item h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
    margin: 0;
    color: #1a1a1a;
}

/* About Preview */
.about-preview {
    background-color: #faf9f5; /* Light Beige */
    padding: 140px 50px !important;
    text-align: center;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-container h2 {
    font-size: 32px !important;
    margin-bottom: 40px !important;
}

.about-container p {
    font-size: 16px !important;
    line-height: 2.2 !important;
    margin-bottom: 50px !important;
    color: #555555;
}

/* Why Choose Us */
.why-choose-us {
    padding: 120px 50px !important;
    text-align: center;
    background-color: #ffffff;
}

.why-choose-us h2 {
    margin-bottom: 80px !important;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    flex: 1;
    padding: 50px 40px;
    border: 1px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.feature:hover {
    border-color: #c9a96e; /* Simple gold border on hover */
}

.feature h3 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.feature p {
    font-size: 14px !important;
    color: #777777 !important;
    line-height: 1.8 !important;
}

/* --- FOOTER --- */
footer {
    background-color: #faf9f5; /* Elevated light beige footer */
    color: #333333;
    padding: 80px 50px 40px;
    text-align: center;
    border-top: 1px solid #eaeaea;
}

footer h2 {
    margin: 0 0 30px 0;
    font-size: 22px;
    letter-spacing: 8px;
    font-weight: 300;
    color: #1a1a1a;
    text-transform: uppercase;
}

.footer-contact {
    margin-bottom: 50px;
}

.footer-contact p {
    margin: 10px 0;
    font-size: 13px;
    letter-spacing: 2px;
    color: #555555;
}

footer > p {
    font-size: 11px;
    letter-spacing: 2px;
    color: #999999;
    border-top: 1px solid #eaeaea;
    padding-top: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-transform: uppercase;
}

/* --- FORMS --- */
form {
    margin-top: 50px;
}

form div {
    margin-bottom: 25px;
}

form input, form textarea {
    width: 100%;
    max-width: 600px;
    padding: 18px 20px;
    border: 1px solid #eaeaea;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #333333;
    transition: border-color 0.3s ease;
}

form input:focus, form textarea:focus {
    outline: none;
    border-color: #c9a96e; /* Gold focus effect */
}

form button[type="submit"] {
    background-color: transparent; /* Clean button outline */
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 18px 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

form button[type="submit"]:hover {
    background-color: #c9a96e; /* Gold hover fill */
    border-color: #c9a96e;
    color: #ffffff;
}

/* --- INNER PAGE SHARED CLASSES --- */

/* About Page */
.about-page-wrapper {
    max-width: 800px;
    margin: 120px auto;
    padding: 0 50px;
    text-align: center;
}

.about-page-wrapper section {
    margin-bottom: 100px;
    padding: 0;
    border: none;
}

.about-page-wrapper h2 {
    font-size: 32px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 40px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 25px;
}

.about-page-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: #c9a96e;
}

.about-page-wrapper p {
    font-size: 16px;
    line-height: 2.2;
    color: #555555;
    margin-bottom: 25px;
}

.special-section ul {
    list-style-type: none;
    padding: 0;
    margin: 50px auto 0;
    max-width: 500px;
}

.special-section ul li {
    font-size: 15px;
    padding: 25px 0;
    color: #333333;
    border-bottom: 1px solid #f0f0f0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.special-section ul li:last-child {
    border-bottom: none;
}

.special-section ul li::before {
    content: "\2022";
    color: #c9a96e;
    margin-right: 20px;
    font-size: 24px;
    vertical-align: middle;
}

/* Collection & Grids */
.collection-page-wrapper {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 50px;
    text-align: center;
}

.collection-header {
    margin-bottom: 80px;
    border: none;
    padding: 0;
}

.collection-header h2 {
    font-size: 34px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 25px;
}

.collection-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: #c9a96e;
}

.collection-grid-section {
    margin-bottom: 100px;
    max-width: 100%;
    padding: 0;
    border: none;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 60px;
}

.collection-item {
    text-align: center;
}

.collection-item img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    background-color: #faf9f5;
    margin-bottom: 30px;
    transition: opacity 0.4s ease;
}

.collection-item img:hover {
    opacity: 0.9;
}

.collection-item h3 {
    font-size: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
    color: #1a1a1a;
}

.collection-footer-text {
    border: none;
    padding: 0;
    margin: 0;
}

.collection-footer-text p {
    font-size: 18px;
    letter-spacing: 4px;
    color: #c9a96e;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
}

/* Trends Page */
.trends-page-wrapper {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 50px;
    text-align: center;
}

.trends-header {
    margin-bottom: 100px;
    border: none;
    padding: 0;
}

.trends-header h2 {
    font-size: 34px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 25px;
}

.trends-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: #c9a96e;
}

.trends-stack {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-bottom: 100px;
}

.trend-item {
    border: none;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.trend-item img {
    width: 100%;
    height: 1000px;
    object-fit: cover;
    background-color: #faf9f5;
    margin-bottom: 40px;
    transition: opacity 0.4s ease;
}

.trend-item img:hover {
    opacity: 0.95;
}

.trend-item h3 {
    font-size: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.trend-item p {
    font-size: 16px;
    line-height: 2;
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
}

.trends-footer-text {
    border: none;
    padding: 0;
    margin: 0;
}

.trends-footer-text p {
    font-size: 22px;
    letter-spacing: 6px;
    color: #c9a96e;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
}

/* Gallery Page */
.gallery-section {
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.gallery-grid img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #faf9f5;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* News Page */
.news-section {
    max-width: 1000px;
    margin: 0 auto 100px;
    text-align: left;
    border: none;
    padding: 0;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eaeaea;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    background-color: #faf9f5;
}

.news-item p {
    font-size: 16px;
    line-height: 2;
    color: #555555;
    flex: 1;
    margin: 0;
}

/* Blog Page */
.blog-section {
    max-width: 1200px;
    margin: 0 auto 100px;
    border: none;
    padding: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.blog-card {
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    border-color: #c9a96e;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.blog-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: #faf9f5;
    display: block;
}

.blog-card h3 {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 30px 25px 15px;
    color: #1a1a1a;
}

.blog-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #777777;
    margin: 0 25px 35px;
}

/* Location Page */
.location-address {
    margin-bottom: 80px;
}

.location-address p {
    font-size: 18px !important;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #1a1a1a !important;
    margin: 12px 0 !important;
}

.location-map {
    width: 100%;
    max-width: 1000px;
    height: 550px;
    object-fit: cover;
    background-color: #faf9f5;
    border: 1px solid #eaeaea;
    margin: 0 auto;
    display: block;
}

/* Contact Page */
.contact-form {
    max-width: 600px;
    margin: 0 auto 80px;
}

.contact-details p {
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #333333 !important;
    margin: 20px 0 !important;
}
