
/* =========================================================
   THEME VARIABLES
   ========================================================= */

/* Light Mode (Default) */
:root {
  --bg-color: #e7ffcbc0;          /* soft green background */
  --text-color: #4a4a4a;          /* main text */
  --subtitle-color: #4a4a4a;      /* secondary text */
  --accent-color: #d48c9e;        /* pink accent */
  --header-bg: #dadada75;         /* header/nav background */
  --nav-link-color: #4a4a4a;      /* nav links */
  --card-bg: #ffffff;             /* white cards/forms */
  --card-border: #d48c9e;         /* pink border */
}

/* Dark Mode (Matcha + Lavender) */
.dark-mode {
  --bg-color: #1f2a24;            /* deep matcha */
  --text-color: #f3f3f3;          /* soft warm white */
  --subtitle-color: #cfcfcf;      /* muted text */
  --accent-color: #d8c2e8;        /* pastel lavender */
  --header-bg: #2b3a33;           /* matcha mist */
  --nav-link-color: #f3f3f3;      /* white nav links */
  --card-bg: #2b3a33;             /* matcha mist cards */
  --card-border: #d8c2e8;         /* lavender border */
}

/* =========================================================
   GLOBAL STYLING
   ========================================================= */
* {
  box-sizing: border-box;
}


   html, body 
{ height: 100%; 
} 
body 
{ 
  display: flex; flex-direction: column; 
}

footer {
  margin-top: auto;
  padding: 20px 40px;
  text-align: left;
  color: var(--text-color);
}



body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  position: relative;
}

/* Watermark (unchanged in dark mode) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/delialogo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1000px;
  body {
  background: var(--bg-color);
}

  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */

header {
  background: var(--header-bg);
  padding: 20px 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 100%;
}
@media (max-width: 600px) {
  header {
    padding: 10px 15px; /* smaller padding for phones */
  width:fit-content
  }
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  nav {
  width: 100%;
  display: block;
}

}
/* Make the logo responsive */
.logo img {
  max-width: 100%;
  height: auto;
}

/* Shrink the logo on mobile */
@media (max-width: 600px) {
  .logo img {
    width: 120px;
  }

  nav {
    width: 100%;
  }
}



.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--accent-color);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--nav-link-color);
  font-weight: 500;
}

.nav-links li a.active {
  color: var(--accent-color);
  font-weight: bold;
}

/* Language Dropdown */
.language-dropdown {
  position: relative;
}

.language-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  background: var(--card-bg);
  padding: 10px 0;
  list-style: none;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  top: 100%;
  right: 0;
  min-width: 120px;
  z-index: 10;
}

.language-dropdown .dropdown-menu.show {
  display: block;
}

.language-dropdown .dropdown-menu li {
  padding: 8px 15px;
}

.language-dropdown .dropdown-menu li a {
  color: var(--text-color);
  text-decoration: none;
  display: block;
}

.language-dropdown .dropdown-menu li a:hover {
  background: rgba(255,255,255,0.1);
}

/* Arrow next to EN */
.language-dropdown > a {
  position: relative;
  padding-right: 14px;
}

.language-dropdown > a::after {
  content: "▼";
  font-size: 0.55em;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

/* Theme toggle*/
.theme-dropdown {
  position: relative;
}
.theme-dropdown > a {
  text-decoration: none;
  color: var(--nav-link-color);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.theme-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  background: var(--card-bg);
  padding: 10px 0;
  list-style: none;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  top: 100%;
  right: 0;
  min-width: 120px;
  z-index: 10;
}

.theme-dropdown .dropdown-menu.show {
  display: block;
}

.theme-dropdown .dropdown-menu li a {
  color: var(--text-color);
  text-decoration: none;
  display: block;
  padding: 8px 15px;
}

.theme-dropdown .dropdown-menu li a:hover {
  background: rgba(255,255,255,0.1);
}

/* Arrow next to Theme */
.theme-dropdown > a {
  position: relative;
  padding-right: 14px;
}

.theme-dropdown > a::after {
  content: "▼";
  font-size: 0.55em;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}




/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 40px;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 2.5em;
  color: var(--accent-color);
}

.hero-text h2 {
  font-size: 1.5em;
  margin-top: 10px;
  color: var(--subtitle-color);
}

.hero-text p {
  margin-top: 20px;
  font-size: 1.1em;
  line-height: 1.6;
}

.buttons {
  margin-top: 30px;
}

.btn {
  background: var(--accent-color);
  color: var(--text-color);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  margin-right: 15px;
  font-weight: bold;
}

.btn.secondary {
  background: var(--card-bg);
  color: var(--accent-color);
}

.hero-image img {
  max-width: 1000px;
  border-radius: 12px;
}

/* =========================================================
   CUSTOM ORDERS PAGE
   ========================================================= */

.custom-orders {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: auto;
}

.info-section {
  color: var(--accent-color);
  flex: 1;
  min-width: 300px;
}

.info-section h1 {
  color: var(--accent-color);
  font-size: 2em;
  margin-bottom: 20px;
}

.info-section ol {
  color: var(--accent-color);
  padding-left: 20px;
  line-height: 2.5;
}

.turnaround {
  margin-top: 30px;
  background: var(--card-bg);
  padding: 15px;
  border-left: 4px solid var(--accent-color);
}

.form-section {
  flex: 1;
  min-width: 300px;
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid var(--card-border);
}

form label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  color: var(--text-color);
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  font-size: 1em;
  background: var(--card-bg);
  color: var(--text-color);
}

button {
  margin-top: 30px;
  padding: 14px 24px;
  background: var(--accent-color);
  color: var(--text-color);
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */

.gallery {
  padding: 60px 40px;
  max-width: 1200px;
  margin: auto;
}

.gallery h1 {
  font-size: 2.5em;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2em;
  color: var(--subtitle-color);
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.gallery-item img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.02);
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-page {
  max-width: 1200px;
  margin: auto;
  padding: 60px 40px;
}

.about-hero h1 {
  font-size: 2.5em;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about-hero .subtitle {
  font-size: 1.2em;
  color: var(--subtitle-color);
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-text h2 {
  color: var(--accent-color);
  min-width: 300px;
}

.about-text h3 {
  font-size: 1.4em;
  color: var(--text-color);
  margin-bottom: 10px;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 18px;
}

.signature {
  font-style: italic;
  font-size: 1.2em;
  margin-top: 20px;
  color: var(--accent-color);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
  max-width: 1200px;
  margin: auto;
  padding: 60px 40px;
}

.contact-hero h1 {
  font-size: 2.5em;
  color: var(--accent-color);
}

.contact-hero .subtitle {
  font-size: 1.2em;
  color: var(--subtitle-color);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info h3 {
  color: var(--accent-color);
}

.contact-info p {
  font-size: 1.05em;
  color: var(--text-color);
}

.faq summary {
  font-weight: bold;
  cursor: pointer;
  color: var(--text-color);
}

.faq p {
  font-size: 0.95em;
  color: var(--subtitle-color);
}

.contact-form input,
.contact-form textarea {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-color);
}

.contact-form .btn {
  background: var(--accent-color);
  color: var(--text-color);
}

/* =========================================================
   END OF FILE
   ========================================================= */
