@charset "utf-8";
/* General Styles */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #F4971F;
    font-family: 'Montserrat', sans-serif;  /* Ensure default font is Montserrat */
}

/* Navigation Bar */
nav {
    position: fixed;
    width: 100%;
    background: #333333;
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #F4971F;
    font-size: 25px;
    padding: 8px 12px;
    transition: 0.3s;
    font-family: "montserrat-alternates";  /* Montserrat Alternates font */
    font-weight: bold;
}

nav ul li a:hover {
    border-radius: 5px;
}

header img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


button {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    border: none;
    color: #FBE8C5;
    text-align: center;
    text-decoration: none;
    font-family: "montserrat-alternates";
    font-weight: bold;
    font-size: 4.5rem;
}

button:hover {
    transform: scale(1.2);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
#about{
 background-color:transparent;
    margin-top: 25px;
    margin-bottom: 25px;
    min-height: 100vh;	
}
#contact {
    background-color:transparent;
    margin-top: 25px;
    margin-bottom: 100px;
    min-height: 100vh;
}

.scroll-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.scroll-section:nth-child(even) {
    background: #333;
}

.parallax {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-color: #9F3995;
}

#home {
    background-image: url(../images/first_scroll.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
	
}

#portfolio {
    background-image: url("../images/my_work_page.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1, h2 {
    font-size: 4rem; /* Adjusted for consistency */
    font-family: "montserrat-alternates"; /* Montserrat Alternates font */
    font-weight: bold;
    color: #333333;
}

h2 {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

p {
    font-size: 1rem;
    max-width: 600px;
    margin: 20px auto;
    font-family: "montserrat"; /* Montserrat font */
    text-align: center;
}

.download-button {
    display: block;
    margin: 0 auto;
    padding: 12px 25px;
    background-color: transparent;
    border: none;
    color: #333333;
    text-align: center;
    text-decoration: none;
    font-family: "montserrat-alternates";
    font-weight: bold;
    font-size: 2.5rem;
}

.download-button:hover {
    transform: scale(1.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    h1, h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    button {
        font-size: 1rem;
    }

    .download-button {
        font-size: 1rem;
    }
}