/* Basic setup for body */
body {
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
}

/* Header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #272829;
  color: #fff;
  padding: 10px 20px;
}

header h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

/* Logo styles */
#logo {
  height: 50px;
  width: 50px;
  border-radius: 47%;
}

/* Logo text styles */
#logo-text {
  font-family: 'Marko One', serif;
  font-weight: 1000;
  font-size: 70px;
}

/* Navbar styles */
nav {
  flex: 1;
}

nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #0074cc;
}

/* Button styles */
.header-button, .btn.animated-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #0074cc;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.8s, transform 0.8s;
}

.header-button:hover, .btn.animated-button:hover {
  background-color: #005aa7;
}

.btn.animated-button {
  padding: 12px 24px;
}

/* Section styles */
section {
  background-color: #fff;
  padding: 40px;
  border-radius: 5px;
  text-align: center;
}

section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* Container for cards */
#content-cards {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  padding: 20px;
  background-color: #f9f9f9;
  margin: 20px 0;
  gap: 20px;
}

/* Card styles */
.card {
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  background-color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
  animation: moveCard 3s ease-in-out infinite; /* Updated animation */
}

.card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
}

.card-content {
  padding: 20px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  margin: 5px 0;
}

.card .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0074cc;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.card .btn:hover {
  background-color: #005aa7;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Card movement animation */
@keyframes moveCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Footer alignment */
#foot {
  text-align: center;
}

/* General section styles */
section#about {
  background-color: #f9f9f9;
  padding: 60px 20px;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Container for about section text and image */
.about-container {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 105px;
}

/* Text styles */
.about-text {
  flex: 1;
  max-width: 600px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0074cc;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* Image styles */
.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.about-cal img {
  max-width: 100%;
  height: 400px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Hero Section Styles */
#hero {
  position: relative;
  height: 550px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url('path/to/your/background-image.jpg');
  background-size: cover;
  background-position: center;
}

/* Container for text and button */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 20px 250px 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  max-width: 800px;
}

/* Paragraph Styles */
#hero p {
  font-size: 24px;
  margin: 20px 0;
}

/* Background Image */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

#foot{
  color: #ddd;
  background-color: #272829;
  padding:10px 10px;
}



/* Basic styles for the celebration button */
#celebrate-btn {
  display: inline-block;
  padding: 10px 250px;
  font-size: 16px;
  background-color: #0074cc;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#celebrate-btn:hover {
  background-color: #005aa7;
}

/* Confetti container styles */
#confetti {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1000;
  display: none; /* Hidden by default */
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #ffcc00;
  opacity: 0.8;
  pointer-events: none;
  border-radius: 50%;
  animation: confetti-fall 1s linear forwards;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-1000px) rotate(0deg);
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}


/* Calendar styles */
.calendar {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin-top: 20px; /* Space between content and calendar */
  width: 100%; /* Ensure it fits within the container */
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.calendar-header h2 {
  margin: 0;
}

.calendar-body {
  padding: 10px;
}

.calendar-days, .calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-days div, .calendar-dates div {
  text-align: center;
  padding: 5px;
}

.calendar-days div {
  font-weight: bold;
}

.calendar-dates div {
  background-color: #f9f9f9;
  border-radius: 4px;
}

/* Highlight today's date */
.highlight:hover{
  background-color: #090908; /* Light blue color */
  font-weight: bold;
  color: #b0e013;
  padding: 10px;
}

.highlight{
  font-size: 22px;
  color: #6663f5;
}



