/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Navbar Styling */
.navbar {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 20px;
}

.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #ffd700;
}

/* Hero Section Styling */
.hero-section {
    background: #f4f4f4;
    padding: 6rem 0;
}

.hero-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.btn {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #555;
}
/* Modal background */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.6);
}

/* Modal box */
.modal-content {
  background: #fff;
  color: #333;
  margin: 15% auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Close button */
.close {
  color: #aaa;
  float: right;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #000;
}

/* Links in modal */
.modal-content a {
  display: block;
  margin: 10px 0;
  padding: 10px;
  background: #E1306C;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}
.modal-content a:hover {
  background: #C13584;
}
/* Main Button */
.contact-btn {
  padding: 12px 28px;
  font-size: 1rem;
  color: #fff;
  background: #222;
  border: 2px solid #555;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #333;
  border-color: #00f2fe;
  box-shadow: 0 0 15px rgba(0,242,254,0.6);
}

/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Hidden Links */
.dropdown-content {
  display: none;
  position: absolute;
  background: #111;
  min-width: 160px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  z-index: 1;
}

/* Dropdown Links */
.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background: #222;
  color: #00f2fe;
}

/* Show on Hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive styles for mobile devices */
@media (max-width: 600px) {
  .container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .nav-links li {
    margin-bottom: 10px;
  }
  .hero-section {
    padding: 20px 0;
  }
  .hero-content {
    width: 100%;
    text-align: center;
    padding: 0 10px;
  }
  .hero-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  h1 {
    font-size: 1.5em;
  }
  p {
    font-size: 1em;
  }
  .btn, .contact-btn {
    width: 100%;
    font-size: 1em;
    padding: 12px 0;
  }
  .modal-content {
    width: 90%;
    margin: 10% auto;
  }
}

/* Contact Section */
.contacts {
  margin-top: 20px;
}

.contacts h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.contact-link {
  display: inline-block;
  margin-right: 15px;
  padding: 10px 18px;
  border-radius: 8px;
  background: #222;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: #333;
  color: #00f2fe;
  box-shadow: 0 0 12px rgba(0,242,254,0.7);
}




/* ===== Anonymous Message Section ===== */
.anon-section {
  background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
  padding: 4rem 0;
  text-align: center;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}

.anon-section h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 1rem;
}

.anon-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.anon-btn {
  background: #111;
  border: 2px solid #555;
  transition: all 0.3s ease;
}

.anon-btn:hover {
  background: #222;
  color: #00f2fe;
  border-color: #00f2fe;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

/* ===== Memories Section ===== */
.memories-section {
  padding: 5rem 0;
  background: #f9f9f9;
  text-align: center;
}

.memories-section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #222;
}

.memories-section p {
  color: #555;
  margin-bottom: 3rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.memory-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.memory-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.memory-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.memory-card h3 {
  margin: 15px 0 5px;
  color: #222;
}

.memory-card p {
  padding: 0 15px 20px;
  color: #666;
  font-size: 0.95rem;
}
