/* Global Font & Box Sizing */
* {
  font-family: 'Californian FB', serif !important;
  box-sizing: border-box;
}
.brand-logo {
  font-size: 48px;   /* adjust as per your design */
  font-family: "Playfair Display", serif;
  letter-spacing: 2px;
}

.brand-logo .reg {
  font-size: 60%;
  vertical-align: super;
  margin-left: 2px;
}

/* ------------------------------------------------------------- */
/* Slider image sizing adjustments */
/* The following rules override default gallery image sizing to ensure
   images within the slider display at their natural dimensions. The
   slider slides remain full width (100%), but the image itself is
   centered and allowed to keep its intrinsic size (capped by the slide).
   This prevents distortion or unwanted scaling and keeps the aspect ratio. */



/* Theme Variables */
:root {
  --primary-color: #b76e79;
  --secondary-color: #f9e4dc;
  --background-color: #fdf6f0;
  --text-color: #4a2c2a;
}

/* Reset + Flex Layout for Footer */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

main {
  flex: 1;
}

/* Header */
header {
  background-color: var(--secondary-color);
  text-align: center;
  padding: 2rem 1rem;
}

header .logo {
  height: 80px;
  width: auto;
}

header h1 {
  margin: 0.5rem 0 0;
  font-size: 2.5rem;
  color: var(--primary-color);
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background-color: var(--secondary-color);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
}

/* Section Styling */
.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section h2 {
  margin-top: 0;
  font-size: 2rem;
  color: var(--primary-color);
}

.section p {
  max-width: 800px;
  margin: 1rem auto 0;
}

/* Hero Section */
.hero {
  padding: 6rem 2rem;
  text-align: center;
  background-image: url('images/new-arrivals.png');
  background-size: cover;
  background-position: center;
  color: var(--primary-color);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-top: 0;
}

.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #a55464;
}

/* Filters */
.gallery-filters {
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.gallery-filters button {
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-filters button.active,
.gallery-filters button:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Gallery */


/* ===== FINAL WORKING SLIDER ===== */

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}

.slider-wrapper {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.slider-wrapper .gallery-item {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.slider-wrapper .gallery-item img {
  max-width: 85%;
  max-height: 500px;
  object-fit: contain;
}

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #b76e79;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
  z-index: 10;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }
`

/* Hide filtered items */
.gallery-item.hide {
  display: none;
}

/* Hidden items for filter */
.gallery-item.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  visibility: hidden;
}

/* Contact Page */
.contact-card {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.contact-card .info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.contact-card .info a {
  color: var(--text-color);
  text-decoration: none;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

.contact-form button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #a55464;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  text-align: center;
  padding: 1rem;
  color: var(--text-color);
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: auto;
}


/* LOGO SIZE FIX */
header .logo {
  width: 850px;
  height: 800px;
  object-fit: contain;
}

/* UPDATED LOGO SIZE */
header .logo {
  width: 133px;
  height: 125px;
  object-fit: contain;
}
