/* Global Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #0A1A2F;
  margin: 0;
  padding: 0;
  color: #0A1A2F;
}

/* Header */
header {
  background-color: #0A1A2F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  max-height: 60px;
}

nav a {
  color: #F1F5F8;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #C1D8E8;
}

/* Hero Section */
.hero {
  background-color: #0A1A2F;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #0A1A2F;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #0A1A2F;
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #0A1A2F;
}

/* Features */
.features {
  background-color: #0A1A2F;
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0A1A2F;
}

.features ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
}

.features li {
  font-size: 1.1rem;
  padding: 10px 0;
}

/* Footer */
footer {
  background-color: #0A1A2F;
  color: #F1F5F8;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}



form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #0A1A2F;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
form h2 {
  text-align: center;
}


.about-hero {
  background: url('partinful.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.overlay-box {
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  max-width: 320px;
  margin-bottom: 1rem;
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 8px;
  text-align: left;
}

.overlay-box h2,
.overlay-box h3,
.overlay-box p {
  margin: 0;
  color: #fff;
}

.about-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  margin-top: 120px;
}

.about-text p, .about-text ul, .about-text h4 {
  color: #f0f0f0;
}

.about-text ul {
  padding-left: 1.5rem;
}

.about-text li {
  margin-bottom: 0.5rem;
}


.about-hero {
  background: #0A1A2F;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-content {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  max-width: 1400px;
  width: 100%;
  align-items: flex-start;
}

.text-section {
  flex: 1;
}

.about-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.overlay-box {
  background: #0A1A2F;
  color: white;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.about-text {
  background: #0A1A2F;
  padding: 2rem;
  border-radius: 8px;
  color: white;
}

.about-text ul {
  padding-left: 1.5rem;
}

.about-text li {
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
  }
}


/* Force white text for index page elements */
body, h1, h2, h3, h4, h5, h6, p, li, a, span, div {
    color: #FFFFFF !important;
}


/* Add white border to submit buttons */
input[type="submit"], button[type="submit"] {
    border: 6px solid #FFFFFF !important;
}


.contact-form-wrapper {
    border: 6px solid #FFFFFF;
    padding: 2em;
    border-radius: 12px;
    background-color: #0A1A2F;
    margin-top: 2em;
}


.follow-section {
    background-color: #0A1A2F;
    border: 6px solid white;
    padding: 2em;
    border-radius: 12px;
    margin: 2em 0;
    color: white;
}

.follow-section ul {
    list-style: none;
    padding: 0;
    margin: 1em 0;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.follow-section li {
    display: flex;
    align-items: center;
    gap: 1em;
}

.follow-section a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}


/* Animate social icons */



.social-links-right a img,
footer img,
.contact-form-wrapper img {
  
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links-right a:hover img {
  transform: scale(1.25) rotate(2deg);
}


.icon {
  width: 32px;
  height: auto;
  
  transition: transform 0.2s ease-in-out;
}

.icon:hover {
  transform: scale(1.1);
}


/* Icon size increased by 7% */

.social-links-right a img {
  width: 110%;
  height: auto;
  max-width: none;
}



/* Add 8px spacing between icons */
.social-links-right a {
  margin-right: 2px;
}








/* Final header and footer styling */



/* Override global text color for header and footer */


/* Strong override for header and footer */
header, footer {
    background-color: #FFFFFF !important;
    color: #0A1A2F !important;
    min-height: 10px;
}
header *, footer * {
    color: #0A1A2F !important;
}


.icon-wheel {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 4em auto;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.center-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}


.wheel-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 50%;
  left: 50%;
  transform: rotate(calc(45deg * var(--i))) translate(90px) rotate(calc(-45deg * var(--i)));
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}


.icon-wheel:hover 
.wheel-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 50%;
  left: 50%;
  transform: rotate(calc(45deg * var(--i))) translate(90px) rotate(calc(-45deg * var(--i)));
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}



.wheel-icon img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transition: transform 0.2s ease;
}


.wheel-icon img:hover {
  transform: scale(1.15);
}



.icon-wheel {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 4em auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.center-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.wheel-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 50%;
  left: 50%;
  transform: rotate(calc(45deg * var(--i))) translate(90px) rotate(calc(-45deg * var(--i)));
  opacity: 1; /* Force visible for debug */
  pointer-events: auto;
  z-index: 5;
}

.wheel-icon img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transition: transform 0.2s ease;
}


/* === Revised Contact Page Circular Hover Icons === */
.wkicon-hover-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: auto;
}

.wkicon-hover-wrapper img[src*="wkicon"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.wkicon-hover-wrapper .social-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

.wkicon-hover-wrapper:hover .social-icon,
.wkicon-hover-wrapper .social-icon:hover {
  opacity: 1;
  pointer-events: auto;
}

.wkicon-hover-wrapper .social-icon:nth-of-type(2) { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.wkicon-hover-wrapper .social-icon:nth-of-type(3) { top: 25%; left: 85%; transform: translate(-50%, -50%); }
.wkicon-hover-wrapper .social-icon:nth-of-type(4) { top: 75%; left: 85%; transform: translate(-50%, -50%); }
.wkicon-hover-wrapper .social-icon:nth-of-type(5) { top: 100%; left: 50%; transform: translate(-50%, -50%); }
.wkicon-hover-wrapper .social-icon:nth-of-type(6) { top: 75%; left: 15%; transform: translate(-50%, -50%); }
.wkicon-hover-wrapper .social-icon:nth-of-type(7) { top: 25%; left: 15%; transform: translate(-50%, -50%); }
