/* Reset margins, padding, and height */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Fixed background image behind the site */
#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('hero_background.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1; /* Puts the background behind the content */
}

/* Enable scroll snap */
body {
    scroll-snap-type: y mandatory; /* Snap on vertical scrolling */
}

/* Hero Section */
#hero {
    min-height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: flex-start; /* Align content to the left */
    align-items: flex-start; /* Align content to the top */
    padding: 60px; /* Padding around the content */
    text-align: left; /* Left-aligned text */
    scroll-snap-align: start; /* Snap exactly to the top of the page */
    box-sizing: border-box; /* Ensure no extra space is added */
    margin: 0;
}

/* Sections will snap to the viewport */
.snap-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start; /* Snap to the start of the section */
    background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent background for snap sections */
    margin: 0; /* No margins to avoid layout shifting */
    box-sizing: border-box;
}

/* Hero Section Content */
.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 0.3em;
    color: #fff; /* White text to stand out */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); /* Darker shadow for readability */
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 1.5em;
    color: #f0f0f0; /* Lighter text for subtitle */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background-color: #E67E22;
    color: white;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #D35400;
}

/* About and Projects Sections */
.content-container {
    max-width: 800px;
    text-align: center;
    padding: 20px;
    color: white;
}

#about, #projects {
    background-color: rgba(0, 0, 0, 0.5); /* Transparent background with shadow effect */
    margin: 0;
    box-sizing: border-box;
}

/* Footer (Fixed with social links) */
footer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.social-links {
    display: flex;
    justify-content: flex-end; /* Align the social links to the right */
    gap: 15px; /* Small gap between icons */
}

.social-links a {
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #E67E22;
}

/* Project Section */
.project-section {
    background-color: rgba(44, 62, 80, 0.9); /* Darker background to highlight the project */
    color: white;
    padding: 60px 20px;
    text-align: left;
}

/* Project part sections (Model and Website) */
.project-part {
    margin-bottom: 40px; /* Space between model and website sections */
}

.project-part h3 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #E67E22; /* Orange highlight for the headers */
}

.project-part p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Buttons */
.cta-button {
    background-color: #E67E22;
   
