/* Comprehensive CSS file for Quad Agadir Tours */

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

:root {
  --primary-color: #00A991;
  --primary-dark: #008c78;
  --secondary-color: #f8f9fa;
  --text-dark: #333;
  --text-light: #666;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 169, 145, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h1,
.section-title h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Header Styles */
.site-header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 90px;
  width: auto;
  margin-right: 25px;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav ul li {
  margin: 0 15px;
}

.main-nav ul li a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
  color: var(--primary-color);
}

.main-nav ul li a.active::after,
.main-nav ul li a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
}

#language-selector {
  margin-right: 20px;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background-color: var(--white);
  color: var(--text-dark);
  font-weight: 500;
}

/* Contact Content */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card p,
.info-card a {
  margin-bottom: 10px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form {
  background-color: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 169, 145, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Map Section */
.map-container {
  height: 400px;
  background-color: #eee;
  border-radius: 15px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

/* About Content */
.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.about-text h2 {
  color: var(--primary-color);
  margin: 25px 0 15px;
}

.about-text p {
  margin-bottom: 15px;
  color: var(--text-light);
}

/* Booking Form */
.booking-form {
  background-color: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.form-col {
  display: flex;
  flex-direction: column;
}

.tour-selection-section h2 {
  color: var(--primary-color);
  margin: 30px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary-color);
}

.tour-option {
  background-color: var(--secondary-color);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.tour-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tour-option.selected {
  border-color: var(--primary-color);
  background-color: rgba(0, 169, 145, 0.1);
}

.tour-option h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.tour-option p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.tour-price {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Tours Pages */
.tours-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/agadir-desert-buggy-adventure.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  margin-bottom: 50px;
}

.tours-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.tours-hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tour-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tour-img {
  height: 200px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-img img {
  transform: scale(1.05);
}

.tour-content {
  padding: 25px;
}

.tour-content h3 {
  color: var(--text-dark);
  margin-bottom: 15px;
}

.tour-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  background-color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--text-dark);
}

.faq-question i {
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  padding: 0 25px 25px;
  max-height: 500px;
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
  margin: 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta .btn {
  background-color: var(--white);
  color: var(--primary-color);
}

.cta .btn:hover {
  background-color: var(--text-dark);
  color: var(--white);
  transform: translateY(-3px);
}

/* Footer */
.site-footer {
  background-color: #222;
  color: var(--white);
  padding: 60px 0 30px;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-section p {
  color: #bbb;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

.instagram-link {
  background: linear-gradient(45deg, #E1306C, #FCAF45);
}

.instagram-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 8px rgba(225, 48, 108, 0.3);
}

/* Instagram tooltip */
.tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.8);
}

.social-icons a:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #bbb;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #444;
}

.footer-bottom p {
  color: #bbb;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #bbb;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  margin-right: 25px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .section-title h1,
  .section-title h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .site-header .container {
    flex-direction: column;
    gap: 15px;
  }
  
  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .main-nav ul li {
    margin: 5px 10px;
  }
  
  .tours-hero-content h1 {
    font-size: 2rem;
  }
  
  .tours-hero-content p {
    font-size: 1rem;
  }
  
  .cta {
    padding: 60px 0;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    display: none;
    width: 100%;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .main-nav ul li {
    margin: 10px 0;
  }
  
  .header-actions {
    width: 100%;
    justify-content: center;
  }
  
  #language-selector {
    margin-right: 10px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

/* Thank You Page */
.thank-you-section {
  padding: 100px 0;
  text-align: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.thank-you-content h1 {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.thank-you-message {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 30px;
}

.thank-you-details {
  background-color: var(--secondary-color);
  border-radius: 15px;
  padding: 30px;
  margin: 30px auto;
  max-width: 600px;
}

.thank-you-details p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.confirmation-steps {
  text-align: left;
  max-width: 300px;
  margin: 20px auto;
  color: var(--text-light);
}

.confirmation-steps li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.confirmation-steps li:before {
  content: "\2022";
  color: var(--primary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Error Page */
.error-section {
  padding: 100px 0;
  text-align: center;
}

.error-icon {
  font-size: 5rem;
  color: #dc3545;
  margin-bottom: 30px;
}

.error-content h1 {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.error-message {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 30px;
}

.error-details {
  background-color: var(--secondary-color);
  border-radius: 15px;
  padding: 30px;
  margin: 30px auto;
  max-width: 600px;
}

.error-details p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 250px;
  z-index: 1000;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding-left: 25px;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background-color: var(--secondary-color);
    border-radius: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    margin-top: 10px;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-menu li a {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
  }
  
  .dropdown-menu li:last-child a {
    border-bottom: none;
  }
  
  /* Ensure mobile menu is properly displayed */
  .main-nav {
    display: none;
    width: 100%;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 15px;
    padding: 20px 0;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }
  
  .main-nav ul li {
    margin: 5px 0;
    text-align: center;
  }
  
  .main-nav ul li a {
    display: block;
    padding: 12px 15px;
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .dropdown > a::after {
    content: '\25BC';
    font-size: 0.8rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  .dropdown.active > a::after {
    transform: rotate(180deg);
  }
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-widget:hover {
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-image.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 150px 0;
  margin-bottom: 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero .btn {
  background-color: var(--primary-color);
  color: var(--white);
}

.hero .btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--text-dark);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-light);
}

/* Activities Section */
.activities-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 15px;
}

.tab-btn {
  padding: 12px 25px;
  background-color: var(--secondary-color);
  border: none;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.activity-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.activity-img {
  height: 200px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.activity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activity-card:hover .activity-img img {
  transform: scale(1.05);
}

.activity-content {
  padding: 25px;
}

.activity-content h3 {
  color: var(--text-dark);
  margin-bottom: 15px;
}

.activity-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--text-light);
}

.review-info h4 {
  color: var(--text-dark);
  margin-bottom: 5px;
}

.stars {
  color: #ffc107;
}

.review-text {
  color: var(--text-light);
  line-height: 1.7;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Additional helper classes */
.text-center {
  text-align: center;
}

.text-primary {
  color: #00A991;
}

.bg-light {
  background-color: #f8f9fa;
}

.shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.rounded {
  border-radius: 15px;
}