html,
body{

margin:0;

padding:0;

width:100%;

min-height:100%;

}
/* ==========================
   GLOBAL LANDING PAGE STYLE
   ========================== */


:root{

--primary:#E91E63;

--primary-light:#FFF7FA;

--dark:#333;

--light:#F5F5F5;

--white:#ffffff;

}


*{

margin:0;

padding:0;

box-sizing:border-box;

}


html{

scroll-behavior:smooth;

}


body{

font-family:

'Segoe UI',
Arial,
sans-serif;

background:#ffffff;

color:#333;

overflow-x:hidden;

}


img{

max-width:100%;

display:block;

}


a{

text-decoration:none;

color:inherit;

}
/* ==========================
   NAVBAR
   ========================== */

.navbar{

position:sticky;

top:0;

z-index:1000;

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 8%;

background:rgba(255,255,255,0.95);

backdrop-filter:blur(10px);

box-shadow:0 4px 20px rgba(0,0,0,.08);

}


.logo{

font-size:32px;

font-weight:700;

color:#E91E63;

letter-spacing:.5px;

cursor:pointer;

transition:.3s;

}


.logo:hover{

transform:scale(1.03);

}


.nav-links{

display:flex;

align-items:center;

gap:30px;

}


.nav-links a{

text-decoration:none;

font-size:17px;

font-weight:600;

color:#333;

padding:8px 0;

position:relative;

transition:.3s;

}


/* Underline Animation */

.nav-links a::after{

content:"";

position:absolute;

left:0;

bottom:-4px;

width:0;

height:3px;

background:#E91E63;

border-radius:5px;

transition:.3s;

}


.nav-links a:hover{

color:#E91E63;

}


.nav-links a:hover::after{

width:100%;

}


/* Login Button */

.nav-links a:last-child{

background:#E91E63;

color:#fff;

padding:10px 22px;

border-radius:30px;

transition:.3s;

}


.nav-links a:last-child::after{

display:none;

}


.nav-links a:last-child:hover{

background:#d81b60;

transform:translateY(-2px);

box-shadow:0 8px 20px rgba(233,30,99,.25);

}


/* ==========================
   MOBILE
   ========================== */

@media(max-width:768px){

.navbar{

flex-direction:column;

gap:15px;

padding:15px;

}


.logo{

font-size:28px;

}


.nav-links{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}


.nav-links a{

font-size:16px;

}


.nav-links a:last-child{

padding:10px 20px;

}

}
/* ==========================
   HERO SECTION
   ========================== */

.hero{

min-height:85vh;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

padding:40px 20px;

background:
linear-gradient(
rgba(255,255,255,.72),
rgba(255,240,247,.85)
),
url('../images/hero.jpg');

background-size:cover;

background-position:center;

background-repeat:no-repeat;

}


.hero div{

max-width:850px;

animation:fadeUp 1s ease;

}


.hero h1{

font-size:60px;

font-weight:800;

line-height:1.15;

color:#E91E63;

margin-bottom:25px;

text-shadow:0 3px 10px rgba(0,0,0,.12);

}


.hero p{

font-size:21px;

line-height:1.8;

color:#444;

max-width:700px;

margin:auto;

margin-bottom:40px;

}


.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}


.hero-buttons a{

display:inline-block;

padding:16px 34px;

border-radius:40px;

text-decoration:none;

font-size:18px;

font-weight:700;

transition:.35s;

}


.hero-buttons a:first-child{

background:#E91E63;

color:white;

box-shadow:0 10px 25px rgba(233,30,99,.28);

}


.hero-buttons a:first-child:hover{

transform:translateY(-4px);

box-shadow:0 18px 35px rgba(233,30,99,.35);

}


.hero-buttons a:last-child{

background:white;

color:#E91E63;

border:2px solid #E91E63;

}


.hero-buttons a:last-child:hover{

background:#E91E63;

color:white;

transform:translateY(-4px);

box-shadow:0 18px 35px rgba(233,30,99,.28);

}


/* ==========================
   HERO ANIMATION
   ========================== */

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}


/* ==========================
   MOBILE
   ========================== */

@media(max-width:768px){

.hero{

min-height:70vh;

padding:30px 20px;

}


.hero h1{

font-size:38px;

}


.hero p{

font-size:17px;

line-height:1.7;

}


.hero-buttons{

flex-direction:column;

align-items:center;

}


.hero-buttons a{

width:260px;

}

}
/* ==========================
   ACTIVE HIRING SECTION
   ========================== */


.latest-jobs{

padding:70px 8%;

text-align:center;

background:#FFF7FA;

}


.latest-jobs h2{

font-size:36px;

color:#E91E63;

margin-bottom:40px;

font-weight:800;

}


/* Job Cards Container */

.job-preview-container{

display:flex;

justify-content:center;

gap:25px;

flex-wrap:wrap;

}



/* Individual Job Card */

.job-preview-card{

background:white;

width:300px;

padding:28px;

border-radius:20px;

text-align:left;

box-shadow:

0 8px 25px rgba(0,0,0,.08);

transition:.35s;

border:1px solid #f8d7e2;

}



.job-preview-card:hover{

transform:translateY(-8px);

box-shadow:

0 15px 35px rgba(233,30,99,.18);

}



/* Job Title */

.job-preview-card h3{

color:#E91E63;

font-size:22px;

margin-bottom:20px;

}



/* Job Details */

.job-preview-card p{

font-size:16px;

color:#555;

margin:12px 0;

line-height:1.5;

}



/* View Jobs Button */

.view-jobs-btn{

display:inline-block;

margin-top:40px;

padding:14px 35px;

background:#E91E63;

color:white;

border-radius:30px;

text-decoration:none;

font-size:17px;

font-weight:bold;

transition:.3s;

}


.view-jobs-btn:hover{

background:#d81b60;

transform:translateY(-3px);

box-shadow:

0 10px 25px rgba(233,30,99,.3);

}



/* ==========================
   MOBILE
   ========================== */


@media(max-width:768px){


.latest-jobs{

padding:50px 20px;

}


.latest-jobs h2{

font-size:30px;

}


.job-preview-card{

width:100%;

max-width:340px;

}


}
/* ==========================
   STATISTICS SECTION
   ========================== */


.stats{

display:flex;

justify-content:center;

gap:25px;

flex-wrap:wrap;

padding:60px 8%;

background:white;

}



/* Stat Card */

.stat-card{

width:230px;

padding:35px 25px;

background:#FFF7FA;

border-radius:20px;

text-align:center;

box-shadow:

0 8px 25px rgba(0,0,0,.08);

transition:.35s;

border:1px solid rgba(233,30,99,.12);

}



.stat-card:hover{

transform:translateY(-8px);

box-shadow:

0 15px 35px rgba(233,30,99,.18);

}



/* Number */

.stat-card h2{

font-size:42px;

font-weight:800;

color:#E91E63;

margin:0 0 12px;

}



/* Label */

.stat-card p{

font-size:18px;

font-weight:600;

color:#555;

margin:0;

}



/* ==========================
   MOBILE
   ========================== */


@media(max-width:768px){


.stats{

padding:40px 20px;

gap:20px;

}


.stat-card{

width:100%;

max-width:320px;

}


.stat-card h2{

font-size:36px;

}


}


/* ==========================
   LANDING FEATURES
   ========================== */

.landing-features{

display:flex;

justify-content:center;

gap:30px;

flex-wrap:wrap;

padding:70px 8%;

background:#fff;

}


.landing-feature-card{

width:300px;

padding:35px 30px;

background:#FFF7FA;

border-radius:22px;

text-align:center;

box-shadow:0 8px 25px rgba(0,0,0,.08);

border:1px solid rgba(233,30,99,.12);

transition:.35s;

position:relative;

overflow:hidden;

}


.landing-feature-card h2{

color:#E91E63;

font-size:26px;

margin-bottom:18px;

}


.landing-feature-card p{

color:#555;

font-size:17px;

line-height:1.7;

}





}
/* ==========================
   FEATURED ARTISTS
   ========================== */


.featured-artists{

padding:70px 8%;

text-align:center;

background:#fff;

}

/* Heading Center */

.featured-artists h2{

text-align:center;

width:100%;

font-size:36px;

color:#E91E63;

font-weight:800;

margin:0 auto 45px;

}


/* Artist Container */

.artist-container{

display:flex;

justify-content:center;

gap:30px;

flex-wrap:wrap;

}



/* Artist Card */

.artist-card{

width:280px;

background:#FFF7FA;

padding:30px 25px;

border-radius:25px;

box-shadow:

0 8px 25px rgba(0,0,0,.08);

border:1px solid rgba(233,30,99,.12);

transition:.35s;

}



.artist-card:hover{

transform:translateY(-10px);

box-shadow:

0 18px 35px rgba(233,30,99,.18);

}



/* Profile Image */

.artist-photo{

width:150px;

height:150px;

border-radius:50%;

object-fit:cover;

border:5px solid white;

box-shadow:

0 5px 15px rgba(0,0,0,.15);

}



/* Name */

.artist-card h3{

margin-top:20px;

font-size:23px;

color:#E91E63;

}



/* Details */

.artist-card p{

color:#555;

font-size:16px;

margin:10px 0;

}




/* View Button Center */

.view-artists-btn{


display:inline-block;
width:max-content;

margin:40px auto 0;

padding:14px 35px;

background:#E91E63;

color:white;

border-radius:30px;

text-decoration:none;

font-weight:bold;

text-align:center;

}


.view-artists-btn:hover{

background:#d81b60;

transform:translateY(-3px);

}



/* Mobile */

@media(max-width:768px){


.featured-artists{

padding:50px 20px;

}


.featured-artists h2{

font-size:30px;

}


.artist-card{

width:100%;

max-width:320px;

}

}


/* ==========================
   CONTACT SECTION
   ========================== */


.contact{

padding:70px 20px;

text-align:center;

background:

linear-gradient(
135deg,
#E91E63,
#ff5c8d
);

color:white;

}



/* Heading */

.contact h2{

font-size:36px;

font-weight:800;

margin-bottom:25px;

}



/* Text */

.contact p{

font-size:18px;

line-height:1.8;

margin:10px auto;

max-width:600px;

}



/* Email Highlight */

.contact p:first-of-type{

font-weight:bold;

font-size:20px;

}



/* Mobile */

@media(max-width:768px){


.contact{

padding:50px 20px;

}


.contact h2{

font-size:30px;

}


.contact p{

font-size:16px;

}


}

/* ==========================
   FOOTER
   ========================== */


footer{

background:#222;

color:white;

text-align:center;

padding:25px 20px;

font-size:15px;

letter-spacing:.3px;

}


/* Footer Hover Effect */

footer:hover{

background:#1a1a1a;

}



/* Mobile */

@media(max-width:768px){


footer{

font-size:14px;

padding:20px 15px;

}


}



.featured-artists h2{

color:#E91E63;

text-align:center;

}
.featured-artists .view-artists-btn{

color:white;

display:inline-block;

}
