/*
Custom Css
*/

:root {
    --primary-pink: #B66494;
    --primary-blue: #4B72A7;
    --gradient-bg: linear-gradient(135deg, #4B72A7 0%, #764ba2 100%);
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    cursor: pointer;
}

/* Modern Navigation */
.navbar-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}


.navbar-modern.scrolled {
    /* background: rgba(255, 255, 255, 0.98); */
    box-shadow: var(--shadow-soft);
    opacity: 0.9;

    &:hover {
        opacity: 1;
    }
}

.navbar-modern .navbar-nav {
    gap: 0.5rem;
}

.logo-modern {
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: 800 !important;
  font-size: 2rem !important;
  text-decoration: none;
  transition: var(--transition);
  width: 120px;
  height: auto;
}

.logo-modern:hover {
    transform: scale(1.05);
}

.navbar-modern .nav-link-modern {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 1.3rem !important;
    padding: 0.5rem .5rem !important;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
}

.nav-link-modern:hover {
    background: var(--primary-pink);
    color: white !important;
    transform: translateY(-2px);
}


/* MESSAGES */
.message {
    position: fixed;
    z-index: 100;
    top: 90px;
    color: var(--primary-pink);
    right: 5px;
    background-color: white;
    padding: 10px 20px;
    border-radius: 10px;

    & .close {
        position: absolute;
        top: -2px;
        right: 8px;
        color: var(--primary-blue);
        font-size: 1.5rem;
        cursor: pointer;
    }

    &.error {
        box-shadow: 0 1rem 3rem rgba(250,0,0,.375)!important;
    }

    &.success {
        box-shadow: 0 1rem 3rem rgba(26, 103, 26, 0.375)!important;
    }

    &.info {
        box-shadow: 0 1rem 3rem rgba(56, 111, 173, 0.375)!important;
    }

}




/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    /* background: linear-gradient(50deg, #ffffff 0%, #bb31a8 100%); */
    /* background: linear-gradient(50deg, #00929c, #bb31a8); */
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/game_bg.jpeg');
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    /* opacity: 0.3; */
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(50deg, #00929c, #bb31a8);
    opacity: 0.8;
    z-index: 1;
}


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

.hero-title {
    font-family: 'Gloock', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}


.hero-content p {
    font-size: 1.4rem !important;
    text-shadow: 1px 1px 0px rgba(3,3,3,1);
    font-weight: 600 !important;

    &.hero-subtitle {
        font-size: 1.6rem !important;
        text-shadow: 2px 1px 1px rgba(3,3,3,1);
        margin-bottom: 3rem;
    }
}

.btn-modern {
    background: rgba(182, 100, 148, 0.8);
    border: 5px double var(--primary-blue);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.btn-modern-small {
    background: rgba(182, 100, 148, 0.8);
    border: 1px solid var(--primary-blue);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);

}

.btn-modern:hover {
    background: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
}

/* Section Styling */
.section-modern {
    padding: 9rem 0 5rem;
    position: relative;
    background-color: white;
    z-index: 2;
}

.section-title {
    font-family: 'Gloock', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-pink);
    border-radius: 2px;
}

/* Cards Grid */
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
    margin-top: 3rem;
}

.card-modern {
    max-width: 30%;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;

    & .card-link {
        display: block;
        padding: 2rem;
        text-decoration: none;
    }

    & .card-link:hover .btn-modern-small {
        background: var(--primary-pink);
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
        color: white;
    }
}

.full-width {
    max-width: 100% !important;
}

.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    width: 250px;
    max-width: 90%;
    /* height: 120px; */
    border-radius: 10px;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
}

.card-image-big {
    height: 70vb;
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0rem;
    color: var(--text-dark);
}

.card-text {
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

/* Contact Form */
.contact-section {
    background: white;
}

.form-modern {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.form-control-modern {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8f9fa;
}

.form-control-modern:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
    background: white;
}

/* Custom Checkbox Styling */
.form-check-modern {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}

.form-check-input:checked {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    /* background-image: none !important; */
}


.form-check-input:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(182, 100, 148, 0.25);
    border-color: var(--primary-pink);
}

.form-check-label {
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Footer */
.footer-modern {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0 1rem;
    z-index: 1;

    & a:hover {
        color: white !important;
    }
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-pink);
    transform: translateY(-3px);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 996px) {
    .cards-grid {
      gap: 1rem;
    }

    .card-modern {
      max-width: 48%;

      & .card-link {
        padding: 0.5rem;
      }
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-modern {
      max-width: 80%;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* COLORS */
.text-blue {color: #4B72A7 !important;}
.text-pink {color: #B66494 !important;}


h1, h2, h3, h4, h5 {
  font-family: "Gloock", serif;
  font-weight: 400;
  font-style: normal;
}



nav .sitename a.logo {
    font-family: "Bodoni Moda", serif;
    font-optical-sizing: auto;
    font-weight: 800 !important;
    font-style: normal;
    font-size: 2.2rem !important;
    margin-bottom: 0;
}

nav .nav-item a {font-size: 20px; }
nav .nav-item a { color : #4B72A7; }
nav .nav-item a.active { color : #B66494; }


.decorative-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* inverted corners */
.inv-corners {
  position: relative;
  z-index: 1;
}


.inv-corners:before {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: #A06093;
  mask:
    radial-gradient(20px at 20px 20px,#0000 calc(98% - 5px),#000 calc(100% - 5px) 98%,#0000) -20px -20px,
    linear-gradient(90deg,#000 10px,#0000 0) -5px 50% /100% calc(100% - 40px + 5px) repeat-x,
    linear-gradient(      #000 10px,#0000 0) 50% -5px/calc(100% - 40px + 5px) 100% repeat-y;

}


/* BUTTONS  */


.btn-outline-pink {
    --bs-btn-color: #B66494;
    --bs-btn-border-color: #B66494;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #B66494;
    --bs-btn-hover-border-color: #B66494;
    --bs-btn-focus-shadow-rgb: 25,135,84;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #B66494;
    --bs-btn-active-border-color: #B66494;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #B66494;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #B66494;
    --bs-gradient: none;
}

.btn-outline-pink {
  color: #B66494;
  border-color: #B66494;
}

.btn-outline-pink:hover {
  color: white;
  background-color: #c08dab;
  border-color: #fff;
}

.btn-lg {
  font-size: 1.25rem !important;
}

.text-quoted {
  border-left: 15px solid rgb(213, 243, 255);
  padding-left: 30px;
  padding-right: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  max-width: 1140px;
  margin: auto;
}

.text-bold {
  font-weight: 600 !important;
}


/* Terms and conditions, data security */
.highlight-box {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    border-left: 4px solid var(--primary-pink);
    border-right: 4px solid var(--primary-pink);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.pink-section {
    background: var(--primary-pink);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 2rem 0;
}

.pink-section h4 {
    margin-bottom: 1rem;
}

.pink-section a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.pink-section a:hover {
    text-decoration: underline;
}

.highlight-title {
    margin-bottom: 2rem;
}

.highlight-title h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-pink);
}

.modal-body {
    padding: 1rem 2.5rem;
}

.modal .modal-content > .btn-close {
    position: absolute;
    z-index: 1052;
    top: 5px;
    right: 5px;
    color: var(--primary-blue);
    font-size: 1.5rem;
    cursor: pointer;
}
