/* Custom CSS for Bodrum Rotaract Club */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

/* Remix Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.6.0/remixicon.min.css');

/* Custom Variables */
:root {
  --primary-color: #1e40af;
  --secondary-color: #3b82f6;
  --border-radius-button: 8px;
}

/* Base Styles */
html {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

body > nav,
body > section,
body > div#home-sections,
body > div#projects {
  flex-shrink: 0;
}

body > footer {
  margin-top: auto;
}

/* Custom Logo Font */
.logo-font {
  font-family: 'Pacifico', cursive;
}

/* Navigation Styles */
.navbar-custom {
  background-color: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #f3f4f6;
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar-brand {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-link-custom {
  color: var(--primary-color);
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  font-size: 1.125rem;
  text-decoration: none;
}

.nav-link-custom:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
  height: 70vh;
  background-image: url('https://static.readdy.ai/image/c49c8f5aa796d05d4b4cdce4fe4941f2/a97df935e24c36cd0e14aa0bf38e0dab.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title .highlight {
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Button Styles */
.btn-primary-custom {
  background-color: #CC0066;
  border-color: #CC0066;
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-button);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary-custom:hover {
  background-color: #a60052;
  border-color: #a60052;
  color: white;
}

.btn-outline-custom {
  border: 2px solid #CC0066;
  color: #CC0066;
  background-color: transparent;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-button);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-outline-custom:hover {
  background-color: #CC0066;
  color: white;
}

/* Section Styles */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 4rem;
}

/* Card Styles */
.card-custom {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.card-custom:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-img-custom {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  object-position: top;
}

.card-body-custom {
  padding: 1.5rem;
}

.card-title-custom {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.card-text-custom {
  color: #6b7280;
  margin-bottom: 1rem;
}

.card-link-custom {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-link-custom:hover {
  color: #1e3a8a;
}

/* Event Card Styles */
.event-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.event-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(30, 64, 175, 0.1);
  border-radius: var(--border-radius-button);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.event-icon i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.event-date {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.event-time {
  font-size: 0.875rem;
  color: #6b7280;
}

.event-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.event-description {
  color: #6b7280;
  margin-bottom: 1rem;
}

/* Statistics Section */
.stats-section {
  background-color: var(--primary-color);
  color: white;
  padding: 5rem 0;
}

.stats-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-button);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stats-icon i {
  color: white;
  font-size: 1.5rem;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.stats-label {
  color: #93c5fd;
}

/* Feature Icons */
.feature-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(30, 64, 175, 0.1);
  border-radius: var(--border-radius-button);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #6b7280;
}

/* About Section */
.about-badge {
  width: 3rem;
  height: 3rem;
  background-color: rgba(30, 64, 175, 0.1);
  border-radius: var(--border-radius-button);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.about-badge i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.about-image {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  object-position: top;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* President Message */
.president-image {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  object-position: top;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
}

.quote-icon {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(30, 64, 175, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon i {
  color: var(--primary-color);
  font-size: 1.875rem;
}

.president-label {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.125rem;
}

.president-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
}

.president-position {
  color: var(--primary-color);
  font-weight: 500;
}

/* Footer */
.footer-custom {
  background-color: #374151;
  color: white;
  padding: 2rem 0;
}

.footer-logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
}

.footer-text {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: transparent;
  border-radius: var(--border-radius-button);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CC0066;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.social-icon:hover {
  background-color: #CC0066;
  color: white;
  transform: scale(1.1);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.contact-icon i {
  color: var(--primary-color);
}

/* footer-bottom ve rotary-badge kaldırıldı */

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
  }
  
  .btn-primary-custom,
  .btn-outline-custom {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .stats-number {
    font-size: 2rem;
  }
}

/* Hidden/Show Classes */
.d-none-custom {
  display: none !important;
}

.d-block-custom {
  display: block !important;
}

/* Page Transitions */
.page-transition {
  transition: all 0.3s ease;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Pagination Styles */
.pagination {
  margin-top: 2rem;
}

.pagination .page-link {
  color: var(--primary-color);
  border: 1px solid #e5e7eb;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: var(--border-radius-button);
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.pagination .page-item.disabled .page-link {
  color: #9ca3af;
  pointer-events: none;
  background-color: #f3f4f6;
}
