/* ============================
   SGS – RESET & BASE
   ============================ */

html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: #111;
    font-weight: 500;
}

h1 { font-size: 70px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
    font-size: 15px;
    color: #585858;
    line-height: 1.6;
    font-weight: 500;
}

img { max-width: 100%; }

input:focus, select:focus, button:focus, textarea:focus {
    outline: none;
}

a:hover, a:focus {
    text-decoration: none;
    outline: none;
}

ul, ol {
    padding: 0;
    margin: 0;
}

::placeholder {
    color: #fff;
    font-style: italic;
    text-transform: uppercase;
}

/* ============================
   SGS – HELPERS
   ============================ */

.section-title h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    font-style: italic;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.spad {
    padding: 105px 0;
}

.text-white * {
    color: #fff;
}

/* ============================
   SGS – COMMON ELEMENTS
   ============================ */

/* Boutons principaux */
.site-btn {
    display: inline-block;
    border: none;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    min-width: 186px;
    padding: 24px 30px;
    border-radius: 0;
    text-transform: uppercase;
    color: #081624;
    line-height: normal;
    cursor: pointer;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 1;
}

.site-btn img {
    position: relative;
    left: 13px;
    width: auto;
    display: inline-block;
}

.site-btn:after,
.site-btn:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 9px;
    top: 10px;
    background: #b01ba5;
    z-index: -2;
    box-shadow: 0 0 9px 3px rgba(226, 30, 228, 0.24);
}

.site-btn:before {
    left: 0;
    top: 0;
    background: #fff;
    z-index: -1;
}

.site-btn:hover {
    color: #081624;
}

/* Préloader */
#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #000;
}

.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
    50% {
        transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }
    100% {
        transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

/* Réseaux sociaux header/footer */
.header-social p,
.footer-social p {
    display: inline-block;
    color: #9190a5;
    font-size: 16px;
    padding-top: 4px;
}

.header-social a,
.footer-social a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    margin-left: 13px;
    transition: 0.3s;
}

.header-social a:hover,
.footer-social a:hover {
    background: #b01ba5;
}
.footer-logo img {
    width: 250px;   /* taille logo footer */
    height: auto;
}


/* Newsletter */
.newsletter-section {
    padding: 108px 0 95px;
    text-align: center;
    background: linear-gradient(to right, #3e0f3d 0%, #1c0f3b 100%);
}

.newsletter-section h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 73px;
}

.newsletter-form {
    padding-left: 56px;
}

.newsletter-form input {
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    width: 787px;
    border: none;
    border-bottom: 2px solid #9b91a6;
    background: none;
    height: 63px;
    margin-right: 26px;
}


/* ============================
   SGS – HEADER
   ============================ */

.header-section {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 15px 15px 0;
}

.header-warp {
    max-width: 1496px;
    margin: 0 auto;
}

.header-bar-warp {
    background: #081624;
    height: 80px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    box-shadow: 0 0 9px 3px rgba(226, 30, 228, 0.24);
}

.site-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.site-logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    position: relative;
    top: 10px;
}

.top-nav-area {
    display: flex;
    align-items: center;
    width: 100%;
}

.user-panel {
    margin-left: auto;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.user-panel a {
    color: #fff;
}

.user-panel a:hover {
    color: #b01ba5;
}

.main-menu {
    list-style: none;
    padding-top: 3px;
    text-align: center;
}

.main-menu li {
    display: inline-block;
    position: relative;
}

.main-menu li a {
    font-size: 20px;
    font-weight: 600;
    margin-right: 30px;
    padding-bottom: 10px;
    color: #fff;
}

/* Désactive le menu mobile sur desktop */
.slicknav_menu {
    display: none !important;
}

.main-menu li a:hover {
    color: #b01ba5;
}

.main-menu li a i {
    margin-left: 5px;
    color: #928d92;
}

.main-menu li a:hover i {
    color: #b01ba5;
}

/* ============================
   SGS – HERO
   ============================ */

.hero-slider {
    position: relative;
}

.hero-slider .owl-dots {
    display: flex;
    position: absolute;
    bottom: 38px;
    left: calc(50% - 740px);
    width: 1496px;
    z-index: 2;
}

.hero-slider .owl-dots .owl-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .owl-dots .owl-dot.active {
    color: #b01ba5;
    border-color: #b01ba5;
}

.hero-slider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 100px;
}

.hero-item {
    height: 921px;
    padding-top: 125px;
    border-bottom: 2px solid #b01ba5;
}

.hero-item h2 {
    font-size: 68px;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    position: relative;
    top: 100px;
    opacity: 0;
    text-shadow:
        -1px -1px 0 #000,
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
        -1px  0    0 #000,
         1px  0    0 #000,
         0   -1px  0 #000,
         0    1px  0 #000;
}

.hero-item p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-bottom: 70px;
    position: relative;
    top: 80px;
    opacity: 0;
}

.hero-item .site-btn {
    position: relative;
    top: 50px;
    opacity: 0;
}

.hero-slider .owl-item.active .hero-item h2,
.hero-slider .owl-item.active .hero-item p,
.hero-slider .owl-item.active .hero-item .site-btn {
    top: 0;
    opacity: 1;
    transition: all 0.5s ease;
}

.hero-slider .owl-item.active .hero-item h2 {
    transition-delay: 0.4s;
}

.hero-slider .owl-item.active .hero-item p {
    transition-delay: 0.6s;
}

.hero-slider .owl-item.active .hero-item .site-btn {
    transition-delay: 0.8s;
}

/* ============================
   SGS – SECTIONS
   ============================ */

/* Intro */
.intro-section {
    background: #0c062e;
    padding: 115px 0;
}

.text-box .top-meta {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #b01ba5;
}

.text-box h3 {
    margin-bottom: 40px;
    max-width: 370px;
}

.text-box p {
    font-size: 15px;
    font-weight: 500;
    color: #68647d;
    margin-bottom: 35px;
}

.text-box .read-more {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-style: italic;
    color: #fff;
}
/* ============================
   SGS – GUIDE MINECRAFT (IMAGE DROITE)
   ============================ */

.step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    justify-content: space-between;
}

.step .step-text {
    flex: 1;
}

.step-image {
    flex-basis: 25%;      /* l’image prend ~25% de la largeur */
    max-width: 260px;     /* mais ne dépasse jamais 260px */
}

.step-image img {
    width: 100%;          /* l’image remplit son bloc */
    height: auto;         /* ratio respecté */
    object-fit: cover;    /* jamais déformée */
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}


/* Responsive */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step img {
        width: 70%;
        margin-top: 20px;
    }
}


/* Blog */
.blog-section {
    background: linear-gradient(45deg, #501755 0%, #2d1854 100%);
    padding-bottom: 40px;
}

.blog-filter {
    list-style: none;
}

.blog-filter li {
    display: inline-block;
}

.blog-filter li a {
    display: block;
    color: #fff;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    background: #6f2b95;
    margin-right: 7px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.blog-filter li a:hover {
    background: #b01ba5;
}

.blog-item {
    margin-top: 86px;
}

.blog-item .blog-thumb {
    width: 362px;
    float: left;
    margin-right: 30px;
}

.blog-item .text-box {
    overflow: hidden;
}

.blog-item .text-box p {
    margin-bottom: 42px;
}

/* Featured */
.featured-section {
    position: relative;
    overflow: hidden;
}

.featured-bg {
    width: calc(50% - 156px);
    float: left;
    height: 100%;
    position: absolute;
}

.featured-box {
    float: right;
    width: calc(50% + 156px);
    background: #fff;
    padding: 100px 50px 130px 79px;
}

.featured-box .text-box {
    max-width: 810px;
}

.featured-box .text-box h3 {
    font-size: 60px;
}

.featured-box .text-box p {
    font-size: 16px;
}

/* Games */
.games-section {
    padding: 108px 0;
    background: linear-gradient(45deg, #501755 0%, #2d1854 100%);
}

.game-filter {
    list-style: none;
    margin-bottom: 82px;
}

.game-filter li {
    display: inline-block;
    width: 40px;
    height: 34px;
    background: #503c6e;
    border-radius: 17px;
    transition: 0.3s;
}

.game-filter li:hover {
    background: #c313b7;
}

.game-filter li a {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    display: block;
    text-align: center;
    padding-top: 7px;
}

.game-item {
    margin-bottom: 80px;
}

.game-item h5 {
    font-size: 20px;
    color: #fff;
    padding-top: 30px;
    margin-bottom: 20px;
}

.game-item .read-more {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-style: italic;
    color: #b01ba5;
}

/* Review */
.review-item {
    margin-bottom: 87px;
}

.review-content {
    position: relative;
}

.review-content h3 {
    margin-bottom: 35px;
}

.review-content p {
    margin-bottom: 40px;
}

.review-content .rating {
    position: absolute;
    right: 0;
    top: 0;
}

.review-content .rating h5 {
    font-size: 36px;
    color: #fff;
    font-weight: 900;
    text-align: right;
}

/* Contact */
.map iframe {
    width: 100%;
    height: 600px;
    margin-bottom: 104px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    background: transparent;
    border-bottom: 2px solid rgba(255, 255, 255, 0.54);
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    font-style: italic;
    color: #fff;
}

.contact-form textarea {
    height: 156px;
    margin-bottom: 48px;
}

.contact-text h3 {
    margin-bottom: 25px;
}

.contact-text p {
    color: #68647d;
    margin-bottom: 50px;
}

/* ============================
   SGS – FOOTER
   ============================ */

.footer-section {
    text-align: center;
    background: linear-gradient(to right, #330d38 0%, #190d36 100%);
    padding-top: 60px;
    padding-bottom: 25px;
    position: relative;
}

.footer-left-pic {
    position: absolute;
    left: -13px;
    bottom: 19px;
}

.footer-right-pic {
    position: absolute;
    right: 50px;
    bottom: 19px;
}

.footer-menu {
    padding-top: 62px;
}

.footer-menu li:last-child a {
    margin-right: 0;
}

.footer-social {
    padding-top: 20px;
    padding-bottom: 40px;
}

.footer-social a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    margin-left: 13px;
    transition: 0.3s;
}

.footer-social a:first-child {
    margin-left: 0;
}

.footer-social a:hover {
    background: #b01ba5;
}

.copyright {
    font-size: 12px;
    font-weight: 500;
    color: #9190a5;
    opacity: 0.20;
}

.copyright a {
    color: #9190a5;
}

.copyright a:hover {
    text-decoration: underline;
}

/* ============================
   SGS – RESPONSIVE
   ============================ */

/* Desktop container */
@media (min-width: 1200px) {
    .container { max-width: 1175px; }
}

/* Large screens */
@media (max-width: 1530px) {
    .hero-slider .owl-dots {
        width: 1170px;
        left: calc(50% - 585px);
    }
}

/* Medium screens : 992px–1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .blog-item .blog-thumb { width: 250px; }

    .hero-item p { font-size: 22px; }

    .hero-slider .owl-nav .owl-next { right: 30px; }

    .hero-slider .owl-dots {
        width: 930px;
        left: calc(50% - 465px);
    }

    .newsletter-form { padding-left: 0; }

    .newsletter-form input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .game-filter li {
        width: 31px;
        height: 31px;
    }

    .game-filter li a { padding-top: 5px; }
}

/* Tablet : 768px–991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .header-bar-warp { padding: 39px 15px 0; }

    .main-menu li a { margin-right: 10px; }

    .hero-item h2 { font-size: 110px; }

    .hero-item p {
        font-size: 16px;
        padding: 0 30px;
    }

    .hero-slider .owl-nav .owl-next { right: 0; }

    .hero-slider .owl-dots {
        width: 690px;
        left: calc(50% - 345px);
    }

    .blog-item .blog-thumb {
        float: none;
        margin-right: 0;
        width: 100%;
        margin-bottom: 30px;
    }

    .featured-bg { display: none; }

    .featured-box {
        float: none;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .footer-right-pic { right: 15px; }
    .footer-left-pic { left: -44px; }

    .game-filter { text-align: center; }
    .game-filter li { margin-bottom: 5px; }

    .game-single-content .gs-title { font-size: 40px; }

    .review-pic img {
        min-width: 100%;
        margin-bottom: 30px;
    }

    .contact-text { margin-bottom: 50px; }
}

/* Large Mobile : max 767px */
@media only screen and (max-width: 767px) {

    .header-bar-warp { 
	padding: 25px 20px 10px;
	background: #081624 !important;
	}

    .main-menu.primary-menu { display: none; }

	.slicknav_menu {
		display: block !important;
		background: #081624;
	}


    .slicknav_btn {
        margin-right: 10px;
        background: #3a3a3a;
    }

    .slicknav_nav a:hover,
    .slicknav_nav .slicknav_row:hover {
        background: #25394c;
        color: #fff;
    }

    .hero-item h2 { font-size: 42px; }
    .hero-item p { font-size: 18px; }

    .footer-right-pic,
    .footer-left-pic { display: none; }

    .hero-slider .owl-nav .owl-next {
        top: auto;
        bottom: 33px;
        right: 15px;
        z-index: 99;
    }

    .hero-slider .owl-dots {
        width: 100%;
        left: 0;
        padding-left: 15px;
    }

    .intro-text-box { margin-bottom: 40px; }

    .blog-item .blog-thumb {
        float: none;
        margin-right: 0;
        width: 100%;
        margin-bottom: 30px;
    }

    .sidebar { padding-top: 60px; }

    .featured-bg { display: none; }

    .featured-box {
        float: none;
        width: 100%;
    }

    .featured-box .text-box h3 { font-size: 45px; }

    .newsletter-form { padding-left: 0; }

    .newsletter-form input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .video-text:after { left: 0; }


    .game-filter { text-align: center; }
    .game-filter li { margin-bottom: 5px; }

    .game-single-content .gs-title { font-size: 40px; }

    .review-pic img {
        min-width: 100%;
        margin-bottom: 30px;
    }

    .contact-text { margin-bottom: 50px; }

    .review-content .rating {
        position: relative;
        margin-bottom: 20px;
    }

    .review-content .rating h5 {
        text-align: left;
        padding-right: 0;
    }
}

/* Small Mobile : max 479px */
@media only screen and (max-width: 479px) {

    .hero-item h2 {
        font-size: 55px;
        margin-bottom: 20px;
    }

    .hero-item p { font-size: 15px; }

    .video-text h2 { font-size: 30px; }

    .video-play-btn { top: calc(30% - 61px); }

    .featured-box { padding: 100px 15px; }

    .featured-box .text-box h3,
    .newsletter-section h2 { font-size: 35px; }

    .main-menu li a { margin-right: 20px; }

    .game-author-pic {
        float: none;
        margin-bottom: 20px;
    }
}

	.page-top-section {
		position: relative;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		padding-top: 180px; /* espace sous le header */
		padding-bottom: 60px;
		min-height: 100vh; /* image sur toute la hauteur */
	}

	.overlay-guide {
		background: rgba(8, 22, 36, 0.92); /* violet foncé SGS */
		padding: 60px 50px;
		margin: 40px auto;
		max-width: 1400px;
		border-radius: 12px;
		box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
	}

	.overlay-guide h1 {
		font-size: 62px; /* taille titre guide */
		white-space: nowrap; /* force une seule ligne */
	}

	.page-info {
		max-width: 1100px;
		margin: 0 auto 40px auto;
		text-align: left;
		color: #fff;
	}

	.page-info h2 {
		font-size: 48px;
		font-weight: 700;
		margin-bottom: 10px;
		color: #fff !important;
	}

	.site-breadcrumb {
		font-size: 16px;
		font-weight: 500;
		color: rgba(255, 255, 255, 0.7);
	}

	.site-breadcrumb a {
		color: rgba(255, 255, 255, 0.9);
	}

	.site-breadcrumb a:hover {
		color: #b01ba5;
	}


/* ============================
   CUSTOM HEADER – SIERRA GOLF
   ============================ */

/* Sous-menu : base cachée */
.main-menu li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #081624 !important;
    border: 1px solid #b01ba5;
    box-shadow: 0 0 12px rgba(176, 27, 165, 0.4);
    padding: 10px 0;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    margin-top: 10px;
    z-index: 9999;
    transition: opacity 0.2s ease, margin-top 0.2s ease;
}

/* Affichage au survol */
.main-menu li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
}

/* Liens du sous-menu */
.main-menu li .sub-menu li {
    display: block;
}

.main-menu li .sub-menu li a {
    display: block;
    padding: 8px 18px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    margin-right: 0;
    text-align: left;
}

.main-menu li .sub-menu li a:hover {
    color: #b01ba5;
    background: rgba(176, 27, 165, 0.15);
}

/* Style du menu principal */
.header-bar-warp .main-menu li a {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-right: 50px !important;
    padding-bottom: 10px !important;
    text-align: left !important;
}

/* Espacement du menu */
.header-bar-warp .main-menu li {
    margin-right: 45px;
}

/* Flèche du menu déroulant */
.main-menu li.has-submenu > a:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    right: 5px;
    top: 6px;
    background-image: url("../img/icons/arrow-down.png");
    background-repeat: no-repeat;
    background-position: center;
}

.hero-section p {
    color: #fff !important;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    font-weight: 700;
    /* Contour noir léger */
    text-shadow:
        -1px -1px 0 rgba(0, 0, 0, 0.7),
         1px -1px 0 rgba(0, 0, 0, 0.7),
        -1px  1px 0 rgba(0, 0, 0, 0.7),
         1px  1px 0 rgba(0, 0, 0, 0.7),
         0 0 5px rgba(0, 0, 0, 0.3);
}

.hero-item h1 {
    font-size: 28px;          /* même taille */
    color: #ffffff !important; /* blanc garanti */
    font-weight: 700;         /* plus lisible */
    text-shadow: 0 0 8px rgba(0,0,0,0.6); /* même glow que ton h2 */
    margin-bottom: 10px;      /* petit espace propre */
}
