/* Aurora Photonics Website - PowerPoint Style */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Calibri, Arial, sans-serif;
    line-height: 1.5;
    color: #000000;
    background: #FFFFFF;
    margin: 0;
    padding: 0;
}

/* Remove white space for home page */
body.home-page {
    background: #404040;
}

/* Title Section (Dark Gray Background like PowerPoint Slide 1) */
.title-section {
    background: #404040;
    color: #FFFFFF;
    text-align: center;
    padding: 40px 40px;
}

/* Home page only (tight spacing) */
.home-page .title-section h1 {
    font-size: 48px;
    font-weight: normal;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.home-page .title-section p {
    font-size: 26px;
    color: #D9D9D9;
    font-weight: 300;
    margin-top: 0;
}

/* All other pages (restore normal spacing) */
body:not(.home-page) .title-section h1 {
    font-size: 48px;
    font-weight: normal;
    color: #FFFFFF;
    margin-bottom: 18px;
}

body:not(.home-page) .title-section p {
    font-size: 24px;
    color: #D9D9D9;
    font-weight: 300;
    margin-top: 8px;
}

/* Non-home pages: restore proper separation between title and nav */
body:not(.home-page) .title-section {
    padding-bottom: 40px;
}


/* Aurora Image Section */
.aurora-image {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background: #000000;
}

.aurora-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Section (Below Aurora Image) */
.nav-section {
    background: #404040;
    color: #FFFFFF;
    text-align: center;
    padding: 40px 40px 20px 40px;
    font-size: 18px;
}

.home-page .nav-section {
    margin-top: 16px;
}

.nav-section a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 10px;
}

.nav-section a:hover {
    text-decoration: underline;
}

/* Hero Section with Dark Blue Background */
.hero {
    background: #1B3668;
    color: #FFFFFF;
    padding: 60px 40px;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero p {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.hero-buttons {
    margin-top: 25px;
}

.hero-buttons a {
    display: inline-block;
    padding: 12px 28px;
    margin: 0 8px;
    background: #00C9A7;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border-radius: 4px;
}

.hero-buttons a:hover {
    background: #00B596;
}

/* Container matching PowerPoint slide width */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 40px;
}

/* Header matching slide 1 */
.header {
    background: #FFFFFF;
    padding: 20px 60px;
    border-bottom: 1px solid #DDDDDD;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #3258EA;
    margin-bottom: 0px;
}

.tagline {
    font-size: 15px;
    color: #808080;
    margin-top: 3px;
    margin-bottom: 12px;
}

.nav {
    font-size: 15px;
    color: #333333;
}

.nav a {
    color: #333333;
    text-decoration: none;
    margin: 0 5px;
}

.nav a:hover {
    color: #3258EA;
    text-decoration: underline;
}

/* Page title matching PowerPoint style */
.page-title {
    font-size: 28px;
    font-weight: bold;
    color: #3258EA;
    margin-bottom: 10px;
}

.page-number {
    font-size: 18px;
    color: #999999;
    margin-bottom: 30px;
}

/* Section headings */
h2 {
    font-size: 22px;
    font-weight: bold;
    color: #3258EA;
    margin-top: 30px;
    margin-bottom: 10px;
}

h3 {
    font-size: 18px;
    font-weight: bold;
    color: #3258EA;
    margin-top: 20px;
    margin-bottom: 8px;
}

/* Text and bullets matching PowerPoint */
p {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 12px;
}

/* Numbered sections for Introduction page */
.numbered-section {
    margin-bottom: 24px;
}

.numbered-section h3 {
    font-size: 20px;
    font-weight: bold;
    color: #3258EA;
    margin-bottom: 15px;
}

.numbered-section h3 .number {
    margin-right: 10px;
}

/* Blue bullets with indentation */
.blue-bullets {
    margin-left: 40px;
    list-style: none;
    padding-left: 0;
}

.blue-bullets li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 18px;
}

.blue-bullets li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3258EA;
    font-size: 18px;
    font-weight: bold;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* Section dividers for Projects page */
.section-divider {
    border: none;
    border-top: 1px solid #DDDDDD;
    margin: 40px 0;
}

li {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Two column layout for slides */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

/* Three column layout for process cards */
.three-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

/* Process card boxes */
.process-box {
    background: #F5F5F5;
    padding: 20px;
    border: 1px solid #DDDDDD;
}

.process-box h3 {
    color: #3258EA;
    margin-top: 0;
}

.process-box ul {
    list-style: none;
    padding-left: 0;
    margin-left: 20px;
}

.process-box li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 16px;
}

.process-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3258EA;
    font-size: 16px;
    font-weight: bold;
}

.deliverable {
    margin-top: 15px;
    font-weight: bold;
}

/* Contact form styling */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-box {
    background: #F5F5F5;
    padding: 25px;
    border: 1px solid #DDDDDD;
}

.contact-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

input, textarea, select {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #CCCCCC;
    font-family: Calibri, Arial, sans-serif;
    font-size: 14px;
}

textarea {
    min-height: 100px;
}

button {
    background: #3258EA;
    color: white;
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

button:hover {
    background: #2847C8;
}

/* Footer */
.footer {
    background: #404040;
    padding: 30px 60px;
    margin-top: 50px;
    border-top: 1px solid #666666;
    text-align: center;
}

.footer p {
    color: #D9D9D9;
    margin: 0;
}

.footer a {
    color: #D9D9D9;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .two-column,
    .three-column,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 20px;
    }
}
