/* ================================== */
/* CLAYBYTES — OFFICIAL STYLESHEET    */
/* File: styles.css                    */
/* ================================== */

/* Brand Colors */
:root {
    --primary: #1E2A38;
    --secondary: #F5F7FA;
    --accent: #00C2A8; /* ClayBytes Turquoise */
    --text-dark: #1E2A38;
    --text-light: #ffffff;
    --card-bg: #ffffff;
    --shadow: rgba(0, 0, 0, 0.08);
}

/* Reset */
* {
    box-sizing: border-box;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: var(--secondary);
    color: var(--text-dark);
}

/* Container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background-color: var(--primary);
    padding: 20px 0;
    color: var(--text-light);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: var(--text-light);
    margin-left: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

nav a:hover {
    opacity: 0.7;
}

/* Headings */
h1,
h2,
h3 {
    margin-top: 0;
    
}

h1 {
    font-size: 2.4em;
    font-weight: 700;
}

h2 {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary);
}

/* Links */
a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero .cta {
    display: inline-block;
    background: var(--accent);
    color: var(--text-light);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.hero .cta:hover {
    background: #009e8a;
}

/* About Section */
.about {
    padding: 60px 20px;
    /*background-color: var(--secondary);*/
    background-color: #f0f3f6;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
}

/* Services Section */
.services {
    padding: 60px 20px;
    /*background: var(--card-bg);*/
    background-color: #ffffff;
}

.services ul {
    list-style-type: none;
    padding: 0;
}

.services li {
    background: var(--secondary);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px var(--shadow);
}

.services strong {
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--primary);
    padding: 30px 20px;
    text-align: center;
    color: var(--text-light);
}

footer p {
    margin-bottom: 10px;
}

/* Contact Links */
.contact-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    color: var(--accent);
}

.contact-links li {
    margin: 0 5px;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        text-align: center;
    }

    nav a {
        margin: 10px 0 0;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }
}

/* ================================== */
/* PAGE STYLES FOR CONTACT / PRIVACY / TERMS */
/* ================================== */

.page-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    background: var(--secondary);
}

.page-section h1 {
    font-size: 2.4em;
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary);
}

.page-intro {
    text-align: center;
    font-size: 1.1em;
    opacity: 0.8;
    margin-bottom: 40px;
}

.info-block {
    background: #ffffff;
    padding: 30px 30px 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

.info-block h2 {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--primary);
}

.info-block p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
}

.info-block a {
    color: var(--accent);
    font-weight: 600;
}

.info-block a:hover {
    color: #009e8a;
}

/* Make lists inside policies look clean */
.info-block ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.info-block li {
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-section {
        padding: 60px 20px;
    }

    .page-section h1 {
        font-size: 2em;
    }

    .info-block {
        padding: 20px;
    }
}

/* ================================== */
/* NAVIGATION BAR                     */
/* ================================== */

nav {
    background-color: var(--primary);
    padding: 18px 0;
    color: var(--text-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    color: var(--text-light);
    font-size: 1.6em;
    font-weight: 700;
    text-decoration: none;
}

.menu {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.menu li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.menu li a:hover {
    color: var(--accent); /* ClayBytes turquoise */
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 12px;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Logo styling */
.logo img {
    height: 250px;          /* Adjust size as needed */
    width: auto;
    display: block;
    display: flex;
    filter: brightness(1) invert(1);
    transition: filter 0.25s ease;
}

/* Hover effect: tint to accent color */
.logo img:hover {
    filter: brightness(1) invert(1)
            sepia(1)
            saturate(600%)
            hue-rotate(135deg)
            brightness(1.15);
}




/*.nav-container .logo {
    display: flex;
    align-items: center;
}*/