/* Macaroni Crew Productions Stylesheet */

/*Reset some default margins and padding */
body, h1, h2, h3, p, ul{
    margin: 0;
    padding: 0;
}

/* Body Styles */
body{
    background: linear-gradient(160deg, #f6d365 0%, #fda085 100%);
    color: #1f1f1f;
    font-family: 'Trebuchet MS', sans-serif;
    line-height: 1.6;
    padding: 20px;
}

/* Header Section */
header{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    background-color: #f9c74f; /*Macaroni Yellow */
    padding: 20px;
    border-radius: 15px;
}

/* Header Title */
header h1{
    color: #003566;
    font-size: 2.8em;
    font-family: 'Fredoka One', 'Trebuchet MS', sans-serif;
    margin: 10px 0 5px 0;
}

/*Logo Image (skater dude) styling */
.logo{
    width: 130px;
    display: block;
    margin: auto 10px;
}

.center-logo{ 
    text-align: center;      /* center image under header */
    margin: 20px 0;
}

/* Large Logo */
.main-logo {
    width: 60%;
    max-width: 500px;
    display: block;
    margin: 20px auto 10px 10%;
    border-radius: 20px;
}

/*Text under logo */
.intro-text{
    text-align: left;  /*align left */
    margin: auto;
    max-width: 80%; /* centers with margings */
    font-size: 1.1em;
}

/* Navagation Bar */
nav ul{
    list-style: none;     /*removes bullet points */
    padding: 0;
    margin-top: 10px;
}

nav li {
    display:inline-block;  /* display links in one line */
    margin: 0 20px;
}

nav a{
    color: #003566;  /*navy blue text */
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

nav a:hover{
    text-decoration: underline;
    color: #d62828;  /* red-orange accent on hover */
    padding: 5px 10px;
    border-radius: 10px;
    transform: scale(1.1);
}

/* Main Content */
main{
    margin-top: 30px;
}

/* Into Section */
.intro{
    margin-bottom: 30px;
    text-align: center;
}

/* Headings */
h1{
    color: #003566;
    font-size: 2.5em;
}

h2{
    color: #d62828;
    margin-top: 20px;
}

h3{
    color: #003566;
    margin: 15px 0;
}

/* Lists */
ul{
    margin-left: 30px;
}

/*Link Sections */
.links a{
    color: #0077b6;  /* lighter blue shade */
}

.links a:hover{
    color: #d62828;
}

/*Back to Top link */
.top-link{
    text-align: right;
    margin-top: 20px;
}

.top-link a{
    color: #003566;
}

/* Footer Section */
footer{
    text-align: center;
    background-color: #003566;
    color: white;
    padding: 15px;
    border-radius: 15px;
    margin-top: 40px;
}

/* Coming Soon Pages */
.coming-soon{
    text-align: center;
    background-color: #fff8e7;
    height: 100vh;   /* full page height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diagonal-text{
    font-size: 3em;
    color: #000;
    transform: rotate(-20deg);  /* diagonal tilt */
    font-weight: bold;
    margin: 50px 0;
}
