/*
Theme Name: Sibora Theme
Author: Eron Mahmuti
Description: A starter theme for Sibora ortodent
Version: 1.0
*/

html{
	overflow-x: hidden;
}
*{
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
/* Hero Section */
.hero {
  min-height: calc(100vh - 80px); /* Fullscreen minus navbar height */
  padding-top: 80px; /* Match navbar height to prevent overlap */
  /*background: linear-gradient(to right, #0c1e35, #1a2639);  Same as navbar */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  /* max-width: 800px; */
  color: #f5f7fa;
  animation: fadeInUp 1s ease-out;
  z-index: 1;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 0rem;
  letter-spacing: 1px;
  background: linear-gradient(to right, #f5f7fa, #00a8cc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #00a8cc;
  color: #f5f7fa;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 168, 204, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
}

.cta-button.secondary {
  background-color: #fd3a69;
  box-shadow: 0 4px 15px rgba(253, 58, 105, 0.4);
}

.cta-button:hover {
  background-color: #fd3a69;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(253, 58, 105, 0.5);
}

.cta-button.secondary:hover {
  background-color: #00a8cc;
  box-shadow: 0 6px 20px rgba(0, 168, 204, 0.5);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.5s ease;
  z-index: -1;
}

.cta-button:hover::before {
  left: 100%;
}

/* Updated Hero Image with Double Border */
.hero-image {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding: 10px; /* Space for outer border */
  border-radius: 15px; /* Outer border radius */
}

.hero-image img {
  width: 100%;
  height: auto;
  border: 3px solid #00a8cc; /* Inner border color */
  border-radius: 10px;
  box-shadow: none; /* Remove previous shadow */
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Optional: Add decorative corner elements */
.hero-image::before,
.hero-image::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    width: 220px;
    font-size: 1rem;
  }

  .hero-image {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-image {
    max-width: 100%;
  }
}
.logo img {
  height: 100px;
}

/* page style  */

/* Modern Page Styles */
.modern-page {
  color: #333;
  line-height: 1.6;
}

/* Modern Hero Section */
.modern-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  margin-bottom: 4rem;
}

.hero-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.5s ease;
}

.modern-hero:hover .hero-background {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 3;
  width: 90%;
  max-width: 1200px;
  padding: 2rem;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Modern Content Section */
.modern-content {
  padding: 0 2rem 4rem;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography and Content Styling */
.modern-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.modern-content h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1.5rem;
  color: #222;
  position: relative;
  padding-bottom: 0.5rem;
}

/* .modern-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #0077cc;
} */

.modern-content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #2a5885;
}

.modern-content a {
  color: #0077cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.modern-content a:hover {
  color: #005599;
  text-decoration: underline;
}

.modern-content ul,
.modern-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.modern-content li {
  margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .modern-hero {
    height: 50vh;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .modern-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .modern-hero {
    height: 40vh;
    min-height: 300px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .modern-content {
    padding: 0 1rem 3rem;
  }
}

/* noooossssssssssssssssssssssssssssssssssss */
/* === Footer Styles === */
.site-footer {
  background: linear-gradient(to right, #0c1e35, #1a2639);
  color: #f5f7fa;
  padding: 0.8rem 5%;
  font-family: inherit;
  padding-top: 2rem;
}
.footer-tagline {
  margin-bottom: 0.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}

.footer-branding h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  /* background: linear-gradient(to right, #f5f7fa, #00a8cc); */
  -webkit-background-clip: text;
  background-clip: text;
  color: #f4f4f4;
}

.footer-branding p {
  font-size: 0.95rem;
  opacity: 0.85;
}

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

.footer-menu li {
  margin: 0.4rem 0;
}

.footer-menu a {
  color: #f5f7fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #00a8cc;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social img {
  width: 30px;
}

.footer-social img:hover {
  /* color: #00a8cc; */
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 1.5rem;
}

.footer-bottom a {
  color: #f5f7fa;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #00a8cc;
}

/* Desktop */
h2 {
  font-size: 2.25rem; /* 36px */
  line-height: 1.3;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem; /* 28px */
  line-height: 1.4;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem; /* 28px */
  }
  h3 {
    font-size: 1.375rem; /* 22px */
  }
}

/* === Responsive Footer === */
@media screen and (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social {
    margin-top: 1rem;
  }
}
