@import url("./css/variables.css");
/* --- Color Palettes --- */
:root {
  --background-color: #f9f9f9;
  --surface-color: #fff;
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --accent-color: #f9a826;
  --text-color: #222;
  --primary-contrast: #fff;
  --shadow-color: rgba(0,0,0,0.08);
  --radius-main: 16px;
}

/* Sunset Palette */
body.palette-sunset {
  --background-color: #db8030;
  --surface-color: #e19915;
  --primary-color: #ff6f61;
  --secondary-color: #ffb347;
  --accent-color: #ffcc80;
  --text-color: #4e260e;
  --primary-contrast: #fff;
  --shadow-color: rgba(255, 111, 97, 0.15);
}

/* Ocean Palette */
body.palette-ocean {
  --background-color: #4fcedf;
  --surface-color: #b2ebf2;
  --primary-color: #039be5;
  --secondary-color: #00bcd4;
  --accent-color: #26c6da;
  --text-color: #002f52;
  --primary-contrast: #6f8add;
  --shadow-color: rgba(3, 155, 229, 0.15);
}

/* Forest Palette */
body.palette-forest {
  --background-color: #81ed56;
  --surface-color: #5e9b60;
  --primary-color: #388e3c;
  --secondary-color: #43a047;
  --accent-color: #8bc34a;
  --text-color: #07570c;
  --primary-contrast: #fff;
  --shadow-color: rgba(56, 142, 60, 0.15);
}

/* Lavender Palette */
body.palette-lavender {
  --background-color: #7f55ab;
  --surface-color: #e1bee7;
  --primary-color: #8e24aa;
  --secondary-color: #ba68c8;
  --accent-color: #ce93d8;
  --text-color: #4a148c;
  --primary-contrast: #fff;
  --shadow-color: rgba(142, 36, 170, 0.15);
}

/* Dark Palette */
body.palette-dark,
body.dark-theme {
  --background-color: #181a2a;
  --surface-color: #23263a;
  --primary-color: #764ba2;
  --secondary-color: #667eea;
  --accent-color: #f9a826;
  --text-color: #f3f3f3;
  --primary-contrast: #181a2a;
  --shadow-color: rgba(0,0,0,0.5);
}

/* System dark preference */
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #181a2a;
    --surface-color: #23263a;
    --primary-color: #764ba2;
    --secondary-color: #667eea;
    --accent-color: #f9a826;
    --text-color: #f3f3f3;
    --primary-contrast: #181a2a;
    --shadow-color: rgba(0,0,0,0.5);
  }
}

/* --- Base Styles --- */
body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  transition: background 0.3s, color 0.3s;
}

header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--primary-contrast);
  padding: 2rem 1rem;
  text-align: center;
}

main {
  padding: 2rem;
}

.card {
  background: var(--surface-color);
  color: var(--text-color);
  border-radius: var(--radius-main);
  box-shadow: 0 2px 8px var(--shadow-color);
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 350px;
  width: 100%;
  transition: background 0.3s, color 0.3s;
}

.btn {
  background: var(--secondary-color);
  color: var(--primary-contrast);
  border: none;
  border-radius: var(--radius-main);
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn:hover,
.btn:focus {
  background: var(--primary-color);
  color: var(--accent-color);
  transform: translateY(-2px) scale(1.04);
}

.modalBox {
  background: var(--surface-color);
  color: var(--text-color);
  border-radius: var(--radius-main);
  box-shadow: 0 10px 25px var(--shadow-color);
  padding: 1rem;
  width: 300px;
  margin: 2rem auto;
  transition: background 0.3s, color 0.3s;
}

footer {
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
  color: var(--primary-contrast);
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius-main) var(--radius-main) 0 0;
}

/* Responsive */
@media (max-width: 600px) {
  .card, .modalBox {
    max-width: 98vw;
    padding: 1rem;
  }
  main {
    padding: 1rem;
  }
}

/* Theme toggle button */
.theme-toggle-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--primary-contrast);
  border: none;
  border-radius: var(--radius-main);
  cursor: pointer;
  box-shadow: 0 4px 6px var(--shadow-color);
  transition: background 0.3s;
}

.theme-toggle-btn:hover {
  background: var(--secondary-color);
}

/* Example for gallery items */
.gallery-item {
  background: var(--surface-color);
  color: var(--text-color);
  border-radius: var(--radius-main);
  box-shadow: 0 2px 12px var(--shadow-color);
  transition: box-shadow 0.2s, transform 0.2s;
}

html {
  scroll-behavior: smooth;
}

<style>
    /* Default (light theme) */
    body {
      font-family: Arial, sans-serif;
      background-color: #ffffff;
      color: #a6d0ec;
      transition: background 0.3s, color 0.3s;
    }

    .card {
      padding: 1rem;
      margin: 2rem auto;
      width: 300px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      background: #f5f5f5;
    }

    /* Dark theme via system preference */
    @media (prefers-color-scheme: dark) {
      body {
        background-color: #29bbc9;
        color: #eeeeee;
      }
      .card {
        background: #239ccf;
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.582);
      }
    }

    /* Dark theme via class toggle */
    body.dark-theme {
      background-color: #2cb3bc;
      color: #eeeeee;
    }
    body.dark-theme .card {
      background: #1a75ae;
      box-shadow: 0 2px 8px rgba(255,255,255,0.1);
    }

    /* Toggle button (just for demo) */
    .theme-toggle {
      margin: 1rem;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
  </style>


:root {
  --radius-main: 26px;
}


body {
    font-family: var(--font-sans);
    margin: 0;
    padding: 0;
    text-align: center;
    background: var(--background-color);
    color: var(--text-color);
    background: linear-gradient(120deg, #a6c4d3 0%, #0d205c 100%);
  color: #333;
  }
html{
  scroll-behavior: smooth;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg-color);
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 8px var(--shadow-color);
  position: relative;
  font-size: 1.1rem;
}

.mysite {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.4rem;
  letter-spacing: 1px;
  cursor:pointer;
}

.mysite:hover{
  color: var(--accent-color);
}
.nav_links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav_links li a {
  text-decoration: none;
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s;
}

.nav_links li a:hover,
.nav_links li a:focus {
  background: var(--primary-color);
  color: var(--primary-contrast);
}

.nav_toggle {
  display: none;
}

.nav_icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 32px;
  height: 28px;
  justify-content: center;
  gap: 5px;
}

.nav_icon span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 2px;
  transition: 0.3s;
}
.price-table{
  border-top: 50px;
}

@media (max-width: 800px) {
  .navbar {
    padding: 0.75rem 1rem;
  }
  .navbar-links {
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
  }
  .nav_icon {
    display: flex;
    margin-left: auto;
  }
  .nav_links {
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 16px rgba(98,0,234,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    z-index: 10;
  }
  .nav_links li {
    text-align: left;
    margin: 0.5rem 0;
  }
  .nav_toggle:checked ~ .nav_links {
    max-height: 300px;
    padding-bottom: 0.5rem;
  }
}

header {
    background: var(--primary-color);
    color: var(--primary-contrast);
    padding: 2rem 1rem;
      background: linear-gradient(135deg, #629d84 0%, #410d75 100%);
  color: #fff;
  }
  
  h1 {
    margin: 0;
  }
  
  main {
    padding: 2rem;
  }
  
  iframe {
    width: 80%;
    height: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
  }

  .btn_container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 200px;
  border-radius: var(--radius-main);
}

.btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-contrast);
  background: var(--secondary-color);
  border: none;
border-radius: var(--radius-main);
  box-shadow: 0 2px 8px rgba(3, 218, 198, 0.15);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn:hover,
.btn:focus {
  background: var(--secondary-dark);
  box-shadow: 0 6px 24px rgba(3, 218, 198, 0.25);
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

.btn:active {
  background: var(--secondary-darker);
  box-shadow: 0 1px 4px rgba(3, 218, 198, 0.18);
  transform: translateY(1px) scale(0.98);
}

@media (max-width: 600px) {
  .btn {
    width: 90%;
    font-size: 1rem;
    padding: 0.75rem 0;
  }
  .btn_container {
    min-height: 120px;
    border-radius: var(--radius-main);
  }
}
@media (max-width: 600px) {
  main {
    padding: 1rem;
    margin: 1rem 0;
  }
  .card, .typewriter-card {
    padding: 1rem;
  }
}

.modalBox{
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 600px;
  bottom:250px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px;
border-radius: var(--radius-main);
  width: 300px;
  height: 200px;
  background-color: rgb(255, 255, 255);
  transition: all 0.05s ease-in;
  margin: 5px 0;
}

.modalBox:target{
  display: flex;
}

.modalBox:hover{
  scale: 1.01;

}
.modalBox hr{
  color: white;
}

.modalBox .modalTitle{
  padding: 2px;
  font-family:Playfair Display;
  font-size: 20px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.759);
  border-radius: var(--radius-main);

}


.modalBox .modalContent{
  font-size: 16px;
  padding: 5px;
}



.modalBox p a{
  color: rgb(211, 84, 84);
  text-decoration: none;
}

.modalBox p a:hover{
  color: rgb(255, 0, 0);
}
.flip-card {
  background: transparent;
  width: 320px;
  height: 200px;
  perspective: 1000px;
  margin: 2rem auto;
  border-radius: var(--radius-main);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  transform-style: preserve-3d;
  border-radius: var(--radius-main);
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 12px var(--shadow-color, rgba(0,0,0,0.08));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 1.1rem;
  padding: 1.5rem;
}

.flip-card-front {
  background: linear-gradient(120deg, #8a9db0 0%, #3357cb 100%);
  color: #222;
}

.flip-card-back {
  background: linear-gradient(120deg, #764ba2 0%, #667eea 100%);
  color: #57ced6;
  transform: rotateY(180deg);
}

/* Responsive */
@media (max-width: 500px) {
  .flip-card {
    width: 98vw;
    height: 160px;
  }
  .flip-card-front,
  .flip-card-back {
    font-size: 1rem;
    padding: 1rem;
  }
}

footer {
    
    background: var(--footer-bg-color);
    color: var(--primary-contrast);
    padding: 1rem;
    margin-top: 2rem;
    
  }
  
  footer a{
    color: rgba(220, 219, 219, 0.595);
    text-decoration: none;
  }

  footer a:hover{
    color: white;
  }

.linkToFest{
    margin-left:12px ;
    font-size: 18px;
    color: var(--border-color);
    text-align: left;
    
  }

  .linkToFest span{
    font-size: 20px;
  }
  
.linkToFest span a{
    color: var(--accent-color);
  }

  .linkToFest span a:hover{
    color: var(--primary-color);
  }

  .footerMiddle{
    display: flex;
  }

  .linkToSocials{
    width: 300px;
    text-align: left;
    

  }

  .linkToSocials > p{
    
    padding-left: 12px;
    color: #ccc;
  }

  .linkToSocials ul{
    margin: 8px 0;
    padding-left: 10px;
    list-style-type: none;
  }

  .linkToSocials ul li{
    padding: 2px;
  }

  .contactUs{
    width: 300px;
    text-align: left;
    margin-right: 1rem;
    
  }

  .contactUs > p{
    padding-left: 12px;
    color: #ccc;
  }

  .contactUs ul{
    padding-left: 10px;
    margin: 8px 0;
    list-style-type: none;
  }

  .contactUs ul li{
    padding:2px;
    color: rgba(220, 219, 219, 0.595);
  }

  @media screen (max-width: 600px) {

  .modalBox{
    left: 50px;
    bottom: 50px;
  }
  footer {
    margin-bottom: 50px;
  }
  .footerMiddle{
    flex-direction: column;
  }

}

/* Google Fonts Import (alternative if not using HTML link) */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+Pro:wght@300;400;600;700&display=swap");

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

/* Base Typography */
body, .navbar a, .btn, p, li {
  font-family: "Source Sans Pro", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 2rem;
  font-weight: 700;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
  padding: 1rem 2rem;
  border-radius: var(--radius-main);
}

.mysite {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Nav Links */
.nav_links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav_links a {
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav_links a:hover {
  color: #007bff;
}

/* Header */
header {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
}

header p {
  font-size: 1.25rem;
  font-weight: 300;
  margin-top: 1rem;
}

/* Main Content */
main {
  padding: 2rem;
  background: linear-gradient(120deg, #d7d6dc 0%, #28514f 100%);
  border-radius: var(--radius-main);
  box-shadow: 0 2px 12px var(--shadow-color);
  margin: 2rem auto;
  padding: 2rem;
  max-width: 1200px;
}

section h2 {
  margin-bottom: 1.5rem;
}

/* Button */
.btn_container {
  text-align: center;
  margin: 2rem 0;
}

.btn {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background: #007bff;
  color: #fff;
  border: none;
border-radius: var(--radius-main);
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #0056b3;
}

/* Footer */
footer {
  background: #2c3e50;
  color: #ecf0f1;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
    background: linear-gradient(120deg, #9ca2a8 0%, #467bbb 100%);
  color: #ecf0f1;
}

.footerMiddle {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

.footerMiddle p {
  font-weight: 600;
}

.footerMiddle ul {
  list-style: none;
  margin-top: 0.5rem;
}

.footerMiddle li {
  margin-bottom: 0.5rem;
}

.footerMiddle a {
  text-decoration: none;
  color: #ecf0f1;
  transition: color 0.3s;
}

.footerMiddle a:hover {
  color: #f39c12;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
  .footerMiddle {
    flex-direction: column;
    gap: 1rem;
  }
}
/* Progress bar component (responsive, CSS-only animation) */

.progress-bar {
  --height: 12px;
  --radius: 999px;
  --bg: rgba(0,0,0,0.08);
  --fill: linear-gradient(90deg, #4f46e5, #06b6d4); /* purple -> teal */
  --duration: 1.6s;

  width: 100%;
  max-width: 720px; /* container limit; adjust as needed */
  margin: 0.75rem 0;
  box-sizing: border-box;
  font-family: inherit;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
  gap: 0.5rem;
}

.progress-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.progress-percent {
  font-size: 0.9rem;
  color: #374151;
  min-width: 3.2ch;
  text-align: right;
}

/* Track */
.progress-track {
  width: 100%;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  height: var(--height);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}

/* Fill */
.progress-fill {
  height: 100%;
  width: 0%; /* starts from 0 and animates to --value */
  background: var(--fill);
  border-radius: var(--radius);
  transform-origin: left center;

  /* animation from 0 -> var(--value) */
  animation: fillToVar var(--duration) cubic-bezier(.2,.9,.2,1) forwards;
}

/* Keyframes: animate width to the CSS property value */
@keyframes fillToVar {
  from { width: 0%; }
  to   { width: calc(var(--value, 0) * 1%); }
}

/* Make percent text reflect same animation visually (optional): fade-in */
.progress-percent {
  opacity: 0;
  animation: percentFade 0.6s ease forwards;
  animation-delay: calc(var(--duration) - 0.5s);
}
@keyframes percentFade { to { opacity: 1; } }

/* Accessibility / reduced motion */
@media (prefers-reduced-motion: reduce) {
  .progress-fill { animation: none; width: calc(var(--value, 0) * 1%); }
  .progress-percent { animation: none; opacity: 1; }
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .progress-bar { max-width: 100%; }
  .progress-title { font-size: 0.9rem; }
  .progress-percent { font-size: 0.85rem; }
  .progress-bar { --height: 10px; }
}
/* --- Sliding Menu --- */
.menu-toggle {
    display: none;
}

.menu-btn {
    font-size: 2rem;
    cursor: pointer;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background-color: var(--accent-color);
    color: #222;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-main);

.sliding-menu {
    position: fixed;
    top: 0;
    left: -250px; /* hidden by default */
    width: 250px;
    height: 100%;
    background-color: var(--surface-2-color);
    box-shadow: 2px 0 10px var(--shadow-color);
    transition: left 0.3s ease;
    padding-top: 4rem;
    z-index: 1000;
    border-radius: var(--radius-main);
}

.sliding-menu ul {
    list-style: none;
    padding: 0;
}

.sliding-menu li {
    margin: 1rem 0;
}

.sliding-menu a {
    text-decoration: none;
    color: var(--secondary-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
    display: block;
    transition: background-color 0.2s;
}

.sliding-menu a:hover {
    background-color: var(--primary-color);
    color: white;
 border-radius: var(--radius-main);
}

/* Toggle menu */
.menu-toggle:checked ~ .sliding-menu {
    left: 0;
}

/* Push content when menu opens */
.menu-toggle:checked ~ .content {
    margin-left: 250px;
    transition: margin-left 0.3s ease;
}

/* Content area */
.content {
    padding: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-btn {
        font-size: 1.5rem;
        padding: 0.3rem 0.8rem;
    }
    .sliding-menu {
        width: 200px;
        left: -200px;
    }
    .menu-toggle:checked ~ .content {
        margin-left: 200px;
    }
}
/* --- Typewriter Effect --- */
.typewriter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.typewriter {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    border-right: 3px solid var(--primary-color); /* use your primary color */
    white-space: nowrap;
    overflow: hidden;
    width: 22ch; /* adjust to text length */
    animation: typing 4s steps(22), blink 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 22ch; }
}

@keyframes blink {
    50% { border-color: transparent; }
}
/* --- Typewriter Effect for paragraph --- */
.typewriter-card {
    text-align: center;
    padding: 2rem;
}

.typewriter-text {
    overflow: hidden; 
    border-right: .15em solid var(--primary-color); 
    white-space: nowrap; 
    margin: 0 auto; 
    letter-spacing: 2px;
    display: inline-block;
    animation: typing 4s steps(60, end), blink-cursor 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-cursor {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color); }
}

/* Responsive for smaller screens */
@media (max-width: 992px) {
    .typewriter-text {
        font-size: 1rem;
    }
}




.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

/* Keyframes for fade-in */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }

}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem 1rem;
  background: var(--background-color);
  justify-items: center;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 12px var(--shadow-color);
  background: var(--surface-color);
  transition: box-shadow 0.2s, transform 0.2s;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
  border-radius: var(--radius-main);
}

.gallery-item:hover,
.gallery-item:focus-within {
  box-shadow: 0 8px 32px rgba(98,0,234,0.15);
  transform: translateY(-4px) scale(1.03);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.07);
  filter: brightness(0.95) saturate(1.2);
}

@media (max-width: 900px) {
  .image-gallery {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }
  .gallery-item img {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .image-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    padding: 1rem 0.5rem;
  }
  .gallery-item img {
    height: 110px;
  }
}

/* Default Theme */
body {
  background-color: #f9f9f9;
  color: #333;
}

/* Dark Theme */
body.dark-theme {
  background-color: #121212;
  color: #f9f9f9;
}
.navbar.dark-theme {
  background-color: #121212;
  color: #f9f9f9;
}

.theme-toggle-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 10px 20px;
  background-color: #6200ea;
  color: #fff;
  border: none;
border-radius: var(--radius-main);
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.theme-toggle-btn:hover {
  background-color: #3700b3;
}

