@charset "UTF-8";

/* Old Profile Stuff - Essential for MFC compatibility */
div#profile_header,div.heading,#username_container,#gender_container,#sexual_preference_container,#about_me_label,.header_links,#server_time,#profile_friends,#profile_comments,#footer_bar {
  display:none!important;
}

.mfc_compliance_link a {
  color:white!important;
}

#about_me_container {
  display:grid!important;
}

/* New Dominatrix Profile Styles */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Montserrat',Arial,sans-serif;
}

body {
  background-color:#000000;
  color:#ffffff;
  line-height:1.6;
}

.profile-container {
  max-width:1100px;
  margin:0 auto;
  padding:2rem;
}

header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:3rem;
  position:relative;
  border-bottom:1px solid #333333;
  padding-bottom:2rem;
}

.logo {
  font-size:2.5rem;
  font-weight:700;
  color:#ffffff;
  letter-spacing:3px;
  text-transform:uppercase;
  position:relative;
}

.logo::after {
  content:'';
  position:absolute;
  bottom:-5px;
  left:0;
  width:30%;
  height:2px;
  background:#ffffff;
}

.cta-button {
  background:#1a1a1a;
  color:#ffffff;
  border:1px solid #333333;
  padding:.8rem 1.5rem;
  font-weight:600;
  font-size:.9rem;
  cursor:pointer;
  transition:all .3s ease;
  display:inline-block;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:2px;
}

.cta-button:hover {
  background:#ffffff;
  color:#000000;
}

.hero {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  margin-bottom:5rem;
  align-items:center;
}

.hero-text h1 {
  font-size:3.5rem;
  font-weight:700;
  line-height:1.2;
  margin-bottom:1.5rem;
  color:#ffffff;
  text-transform:uppercase;
  letter-spacing:3px;
}

.hero-text p {
  font-size:1.1rem;
  margin-bottom:2rem;
  color:#aaaaaa;
  line-height:1.8;
}

.hero-image {
  position:relative;
  height:400px;
  overflow:hidden;
  background:#0a0a0a;
  display:flex;
  justify-content:center;
  align-items:center;
  border:1px solid #333333;
}

.hero-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(100%);
  transition:transform .5s ease;
}

.hero-image:hover img {
  transform:scale(1.05);
}

.section-title {
  font-size:2.2rem;
  font-weight:700;
  margin-bottom:2.5rem;
  text-align:center;
  position:relative;
  text-transform:uppercase;
  letter-spacing:5px;
  color:#ffffff;
}

.section-title::after {
  content:'';
  position:absolute;
  bottom:-10px;
  left:50%;
  transform:translateX(-50%);
  width:60px;
  height:2px;
  background:#ffffff;
}

/* Divider */
.dominatrix-divider {
  width:100%;
  height:30px;
  margin:2rem auto 4rem;
  display:flex;
  align-items:center;
  justify-content:center;
}

.dominatrix-divider::before,.dominatrix-divider::after {
  content:'';
  height:1px;
  background:#333333;
  flex-grow:1;
}

.divider-icon {
  margin:0 20px;
  font-size:1.2rem;
}

/* Rules Section */
.rules {
  margin-bottom:5rem;
  width:100%;
  background:rgba(10,10,10,0.8);
  padding:3rem;
  border:1px solid #333333;
}

.rules-list {
  list-style:none;
}

.rule-item {
  margin-bottom:1.5rem;
  padding-bottom:1.5rem;
  border-bottom:1px solid #1a1a1a;
  display:flex;
  align-items:center;
}

.rule-item:last-child {
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:none;
}

.rule-number {
  font-size:2rem;
  font-weight:700;
  color:#ffffff;
  margin-right:1.5rem;
  opacity:.5;
  min-width:50px;
  text-align:center;
}

.rule-text {
  font-size:1.1rem;
  color:#dddddd;
  line-height:1.6;
}

/* Services Section */
.services {
  margin-bottom:5rem;
}

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

.service-card {
  background:#0a0a0a;
  padding:2rem;
  transition:all .3s ease;
  border:1px solid #333333;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  position:relative;
}

.service-card::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:#ffffff;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s ease;
}

.service-card:hover::before {
  transform:scaleX(1);
}

.service-card:hover {
  background:#151515;
}

.service-title {
  font-size:1.4rem;
  font-weight:600;
  margin-bottom:1rem;
  color:#ffffff;
  text-transform:uppercase;
  letter-spacing:2px;
}

.service-description {
  color:#aaaaaa;
  margin-bottom:1.5rem;
  line-height:1.7;
}

/* Gallery Section */
.gallery {
  margin-bottom:5rem;
}

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

.gallery-item {
  position:relative;
  overflow:hidden;
  height:300px;
  background:#0a0a0a;
  border:1px solid #333333;
}

.gallery-item img {
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(100%);
  transition:all .5s ease;
}

.gallery-overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.7);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  opacity:0;
  transition:all .3s ease;
  padding:1.5rem;
  text-align:center;
}

.gallery-item:hover .gallery-overlay {
  opacity:1;
}

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

.gallery-title {
  font-size:1.2rem;
  font-weight:600;
  margin-bottom:.5rem;
  color:#ffffff;
  text-transform:uppercase;
  letter-spacing:2px;
}

.gallery-category {
  color:#aaaaaa;
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* Tribute Section */
.tribute {
  margin-bottom:5rem;
  width:100%;
  background:#0a0a0a;
  padding:3rem;
  border:1px solid #333333;
}

.tribute-levels {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem;
  margin-top:2rem;
}

.tribute-level {
  background:#151515;
  padding:2rem;
  border:1px solid #333333;
  transition:all .3s ease;
}

.tribute-level:hover {
  transform:translateY(-5px);
  border-color:#ffffff;
}

.level-name {
  font-size:1.4rem;
  font-weight:700;
  margin-bottom:.5rem;
  color:#ffffff;
  text-transform:uppercase;
  letter-spacing:2px;
}

.level-price {
  font-size:2.5rem;
  font-weight:700;
  margin-bottom:1.5rem;
  color:#ffffff;
}

.level-price span {
  font-size:1rem;
  color:#aaaaaa;
}

.level-features {
  list-style:none;
  margin-bottom:2rem;
}

.level-features li {
  margin-bottom:.75rem;
  color:#aaaaaa;
  display:flex;
  align-items:center;
}

.level-features li::before {
  content:'—';
  color:#ffffff;
  margin-right:.5rem;
}

/* Schedule Section */
.schedule {
  margin-bottom:5rem;
  width:100%;
  background:#0a0a0a;
  padding:3rem;
  border:1px solid #333333;
}

.schedule-grid {
  display:grid;
  grid-template-columns:inherit;
  gap:1.5rem;
  margin-top:2rem;
}

.schedule-day {
  text-align:center;
  padding:1.5rem;
  background:#151515;
  border:1px solid #333333;
  transition:all .3s ease;
}

.schedule-day:hover {
  transform:translateY(-5px);
  border-color:#ffffff;
}

.day-name {
  font-size:1.2rem;
  font-weight:600;
  margin-bottom:1rem;
  color:#ffffff;
  letter-spacing:2px;
  text-transform:uppercase;
}

.day-time {
  font-size:1.1rem;
  color:#aaaaaa;
  line-height:1.5;
}

.day-status {
  display:inline-block;
  margin-top:.8rem;
  padding:.4rem 1rem;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:1px;
  border:1px solid;
}

.status-online {
  color:#ffffff;
  border-color:#ffffff;
}

.status-offline {
  color:#666666;
  border-color:#666666;
}

/* Contact Section */
.contact {
  background:#0a0a0a;
  padding:3rem;
  text-align:center;
  border:1px solid #333333;
  margin-bottom:5rem;
}

.contact-title {
  font-size:2.2rem;
  font-weight:700;
  margin-bottom:1.5rem;
  color:#ffffff;
  text-transform:uppercase;
  letter-spacing:2px;
}

.contact-description {
  font-size:1.1rem;
  color:#aaaaaa;
  max-width:700px;
  margin:0 auto 2rem;
  line-height:1.8;
}

.contact-buttons {
  display:flex;
  justify-content:center;
  gap:1rem;
  flex-wrap:wrap;
}

.contact-button {
  padding:.8rem 2rem;
  font-weight:600;
  transition:all .3s ease;
  cursor:pointer;
  display:inline-block;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:.9rem;
}

.primary-button {
  background:#151515;
  color:#ffffff;
  border:1px solid #ffffff;
}

.primary-button:hover {
  background:#ffffff;
  color:#000000;
}

.secondary-button {
  background:transparent;
  color:#aaaaaa;
  border:1px solid #333333;
}

.secondary-button:hover {
  border-color:#ffffff;
  color:#ffffff;
}

/* Footer */
footer {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:3rem;
  border-top:1px solid #333333;
  margin-top:3rem;
}

.footer-logo {
  font-size:1.8rem;
  font-weight:700;
  color:#ffffff;
  text-transform:uppercase;
  letter-spacing:2px;
}

.footer-links {
  display:flex;
  gap:1.5rem;
}

.footer-link {
  color:#aaaaaa;
  text-decoration:none;
  transition:color .3s ease;
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:1px;
}

.footer-link:hover {
  color:#ffffff;
}

.copyright {
  color:#666666;
  font-size:.9rem;
}

/* Animation classes */
.fade-in {
  animation:fadeIn .8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity:0;
    transform:translateY(20px);
  }

  to {
    opacity:1;
    transform:translateY(0);
  }
}

.delayed-1 {
  animation-delay:.2s;
}

.delayed-2 {
  animation-delay:.4s;
}

.delayed-3 {
  animation-delay:.6s;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hero {
    grid-template-columns:1fr;
  }

  .hero-text h1 {
    font-size:2.5rem;
  }

  .hero-image {
    height:350px;
  }

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

  footer {
    flex-direction:column;
    gap:1.5rem;
    text-align:center;
  }

  .profile-container {
    width:95%;
    padding:2rem 1.5rem;
  }

  .rules,.tribute,.schedule {
    padding:2rem 1.5rem;
  }

  .contact {
    padding:2rem;
  }

  .rule-item {
    flex-direction:column;
    align-items:flex-start;
  }

  .rule-number {
    margin-bottom:.5rem;
    margin-right:0;
  }
}