body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: black;
}

nav {
    background: #ffffff;
    padding: 15px;
    text-align: center;
}

nav a {
    color: black;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: red;
}

h1 {
    text-align: center;
    margin-top: 30px;
}

p {
    text-align: center;
    color: #ffffff;
}

footer {
    background: #ffffff;
    color: black;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
/* Contact Page Styling */
.contact-container {
    width: 50%;
    margin: 40px auto;     
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;    
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    border: none;
    background: #222;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.contact-form button:hover {
    background: red;
}
/* Shop page styling */
.product-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    flex-wrap: wrap;
}

/*  Card Styling */
.product-card {
    width: 250px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
} 

.product-card h3 {
    margin: 10px 0 5px;
}

.product-card p {
    margin: 5px 0;
    font-weight: bold;
}

.product-card button {
    padding: 8px 20px;
    background: #222;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.product-card button:hover {
    background: red;
}



.home-text {
    max-width: 900px;   
    margin: 0 auto 20px auto; 
    margin-top: 40px;
    line-height: 1.5;   
    text-align: center;   
    font-size: 20px; 
}



/* main.css */

:root {
  --bg-color: black;
  --card-bg: #ffffff;
  --primary-color: #4f46e5; /* Indigo */
  --selection-bg: #e0e7ff;
  --text-main: red;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.calendar-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card {
  background: var(--card-bg);
  width: 450px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  align-items: center;
}

.row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

select {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

select:focus {
  border-color: var(--primary-color);
}

.selected {
  background: var(--bg-color);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-main);
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.dow {
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: var(--text-muted);
  padding-bottom: 10px;
}

.day {
  aspect-ratio: 1 / 1;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-main);
  transition: background 0.2s;
}

.day:hover {
  background: var(--border-color);
}

.today {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: underline;
}

.selectedDay {
  background: var(--primary-color) !important;
  color: white !important;
  font-weight: bold;
}

.empty {
  aspect-ratio: 1 / 1;
}



/*css for animation index*/
.slideshow {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  height: 600px;
  overflow: hidden;
  background: black;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.final-message {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: white;
  background: black;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 70px;  /* Adjust size */
    width: auto;
}
.mapcontainer {
    display: flex;
    justify-content: center;
    padding: 40px 10px;
    background-color: black;  /* light background to separate it */
}

.map-wrapper {
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}