/* Star Fashion - Custom Styles */

:root {
  --primary-color: #f5a623;
  --secondary-color: #2c3e50;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --model-color: #e91e63;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--secondary-color);
  background-color: var(--light-color);
}

/* Navbar Customization */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}
img.navbar-brand {
  width: 200px;
}

.navbar-nav .nav-link {
  color: #f8f9fa !important;
  font-weight: 500;
  margin-left: 1rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar.scrolled {
  background-color: var(--dark-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-link {
  color: #f8f9fa !important;
}

/* Hero Section */
.hero {
  position: relative;
  top: 0%;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 900;
  color: var(--light-color);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}

.hero p {
  font-size: 2rem;
  color: white;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}

/* Main Content */
main {
  min-height: calc(100vh - 200px);
}

h1 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.lead {
  color: #666;
  font-size: 1.2rem;
}

/* Competition Section */
.competition-section {
  background-size: 20px 20px;
  padding: 120px 0;
}

.competition-section h1 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.competition-section p {
  color: var(--secondary-color);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Testimonial */
.testimonial-card {
  color: #fff;
  font-family: "Vidaloka", serif;
}

.testimonial h2 {
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: none;
  text-align: center;
  margin: 0;
}
.testimonial h3 {
  font-size: clamp(1.5rem, 8vw, 2.5rem);
  letter-spacing: 2px;
  text-transform: none;
  text-align: center;
  margin: 0;
}
.testimonial a {
  color: var(--primary-color);
  font-size: clamp(1rem, 10vw, 1.2rem);
}
.testimonial-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.testimonial p.text-muted {
  font-size: 1rem;
  font-style: italic;
  margin-top: 0.5rem;
  color: #fff !important;
}

.testimonial .blockquote {
  font-style: italic;
  line-height: 1.2;
  padding-right: 85px;
  padding-left: 85px;
}

.parallax-two {
  padding-top: 200px;
  padding-bottom: 200px;
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #1a1a1a;
  background-image: url("https://webdesign-finder.com/ubella/wp-content/uploads/2018/10/testimonials_bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.parallax-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.parallax-two .container {
  position: relative;
  z-index: 2;
}

/* Model Section Styles */
.model-section h2 {
  font-size: clamp(3rem, 8vw, 8rem);
  color: var(--model-color);
}
.model-section {
  background-color: #ffffff;
}

.model-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--secondary-color);
}

.star-name {
  font-size: 1.3rem;
  font-weight: bold;
}

/* Social Buttons */
.social-buttons {
  margin-top: 2rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn i {
  color: white;
}

.social-btn.facebook {
  background-color: #1877f2;
}

.social-btn.facebook:hover {
  background-color: #165ac5;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-btn.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-btn.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 148, 51, 0.4);
}

.social-btn.youtube {
  background-color: #ff0000;
}

.social-btn.youtube:hover {
  background-color: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.social-btn.facebook {
  background-color: #1877f2;
}

.social-btn.facebook:hover {
  background-color: #165ac5;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-btn.tiktok {
  background-color: #000000;
}

.social-btn.tiktok:hover {
  background-color: #333333;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.social-btn.email {
  background-color: var(--primary-color);
}

.social-btn.email:hover {
  background-color: #e08f0c;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
}

.social-btn.phone {
  background-color: #25c059;
}

.social-btn.phone:hover {
  background-color: #1fa844;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 192, 89, 0.4);
}

/* Footer */
footer {
  background-color: var(--dark-color) !important;
  border-top: 3px solid var(--primary-color);
}

footer p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  .testimonial h3 {
    font-size: 20px;
  }
  .testimonial .blockquote {
    padding: 0px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    font-size: 1rem;
  }

  .lead {
    font-size: 1rem;
  }
}
