/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
   box-sizing: border-box;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* General Styles */
body {
            font-family: "Inter","Playfair disply",sans-serif;
            background-color: white;
            color:#000000 ;
            line-height: 1.6;
        }

header {
    background-color:rgb(40, 37, 37);
    color: #000000;
    padding: 30px 0;
    text-align: center;
}
main {
	width: 75%; 				 			    /* reduces overall size to 70% */
    max-width: 1200px;            /* for responsive position if the screen is very large */
	margin-left: auto;						/* centers content */
	margin-right: auto;						/* centers content */
}
 h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            
        }

h1 {
            
            font-size: 3.0rem;
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 2rem;
            padding-bottom: 0.8rem;
            margin-top: 0;
            text-align: center;
            color:  #4A90E2;

        }
        
h2 {
            
            font-size: 2.5rem;
            font-weight: 300;
            line-height: 1.3;
            margin-bottom: 1.5rem;
            color:  #4A90E2;
        }
         
h3 {
            
            font-size: 1.3rem;
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 1.5rem;
            }
            
p {
    text-align: left; /* Default */
    padding: 0.5em 0;
    font-weight: normal;
    font-size: 1.2em;
    margin: auto;
}
@media (max-width: 768px) {
  p {
    text-align: center; /* Center on mobile */
  }
}
nav {                                   /* Locates navigation elements */ 
    display:block;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2em;
  }

nav ul li {
    display: inline;
    margin: 0 25px;
}

nav ul {
    display: inline-flex;
    flex-wrap: wrap;
}
nav ul li a {
    color: #4A90E2;
    text-decoration: none;
    font-size: 2.5em;
    font-weight: bold;
}
nav .cta-button {
    font-weight: bold;
}
/* Footer */
footer {
    background-color: black;
    color: #4A90E2;
    text-align: center;
    padding: 5px 0;
    bottom: 0;
    width: 100%;
}
footer p {
    text-align: center;
    margin: 0;
    font-size: 1em;
}
.slide {
            min-height: 100vh;
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: white;
        }
.slide-number {
            font-size: 2rem;
            font-weight: 400;
            color:  #4A90E2;
            margin-bottom: 2rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
.large-text {
            font-size: 1.5rem;
            font-weight: 400;
            max-width: 800px;
        }
.quote {
            font-family: 'Playfair Display', serif;  
            font-size: 1.5rem;
            font-weight: 400;
            font-style: italic;
            border-left: 4px solid #4A90E2;
            padding-left: 2rem;
            margin: 2rem 0;
            max-width: 900px;
        }
        
.principle-number {
            font-size: 4rem;
            font-weight: 400;
            color: #4A90E2;
            margin-bottom: 0.5rem;
        }


.section {
            margin-bottom: 4rem;
            padding: 2rem;
            border-radius: 8px;
            background-color: white;
            box-shadow: 0 4px 6px rgba(187, 184, 184, 0.1);
        }
.color-palette {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
.color-swatch {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: black;
            font-weight: 500;
        }
:root {
    --accent: #4A90E2;    /* Light blue */
    --dark: black;      /* black */
    --light: #F5F5F5;     /* Off-white */
     --white: #FFFFFF;
     --primary: grey;
}
   



