@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Source+Sans+Pro:wght@400;600;700&display=swap');

:root {
    --primary-teal: #008B8B;
    --accent-coral: #FF6B6B;
    --background-white: #FFFFFF;
    --text-charcoal: #2C2C2C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-charcoal);
    background-color: var(--background-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    padding-left: 1rem;
    font-size: 2rem;
}
p{
    padding-left: 1rem;
}

h3 {
    font-size: 1.5rem;
}

header {
    background-color: var(--background-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--text-charcoal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-teal);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-charcoal);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

section {
    margin: 2rem 0;
    padding: 0 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #006666 100%);
    color: var(--background-white);
    padding: 4rem 1rem;
    text-align: center;
}

.hero h1 {
    color: var(--background-white);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-coral);
    color: var(--background-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-coral);
    color: var(--accent-coral);
}

.btn-secondary:hover {
    background-color: var(--background-white);
    color: var(--primary-teal);
}

.hero-image-container {
    margin-top: 3rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.scroll-preview {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.scroll-content {
    animation: scrollDown 15s linear infinite;
    position: absolute;
    width: 100%;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

footer {
    background-color: var(--text-charcoal);
    color: var(--background-white);
    padding: 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--background-white);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--background-white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-coral);
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.privacy-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.privacy-links a {
    color: var(--background-white);
    text-decoration: underline;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    max-width: 500px;
    width: 90%;
    z-index: 10000;
    display: none;
}

.privacy-popup.show {
    display: block;
}

.privacy-popup p {
    margin-bottom: 1.5rem;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.content-section {
    padding: 3rem 0;
}

.content-section h2 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.content-section h3 {
    color: var(--text-charcoal);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    body {
        hyphens: auto;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-popup {
        bottom: 10px;
        padding: 1.5rem;
    }
    
    .privacy-popup-buttons {
        flex-direction: column;
    }
    
    .privacy-popup-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 0 0.5rem;
    }
}

@media (max-width: 320px) {
    html {
        overflow-x: hidden;
    }
    
    body {
        font-size: 14px;
        overflow-x: hidden;
        width: 100%;
    }
    
    h1 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.25rem;
        padding-left: 0.5rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    p {
        font-size: 0.9rem;
        padding-left: 0.5rem;
    }
    
    .header-container {
        padding: 0 0.5rem;
        width: 100%;
    }
    
    .nav-menu {
        width: 100%;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .container {
        width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }
    
    section {
        margin: 1rem 0;
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 1.5rem 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-buttons {
        gap: 0.75rem;
        padding: 0 0.5rem;
    }
    
    .hero-image-container {
        margin-top: 1.5rem;
        padding: 0 0.5rem;
        width: calc(100% - 1rem);
        max-width: 100%;
    }
    
    .content-section img {
        max-width: 100%;
        height: auto;
        padding: 0 0.5rem;
    }
    
    .scroll-preview {
        height: 250px;
    }
    
    .features-grid {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .content-section {
        padding: 1.5rem 0;
    }
    
    .content-section h2 {
        padding-left: 0.5rem;
    }
    
    .content-section h3 {
        font-size: 1rem;
    }
    
    .content-section ul,
    .content-section ol {
        margin-left: 1.5rem;
        padding-right: 0.5rem;
    }
    
    .contact-form {
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.625rem;
        font-size: 0.875rem;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    footer {
        padding: 1.5rem 0.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section {
        font-size: 0.875rem;
    }
    
    .privacy-popup {
        width: calc(100% - 1rem);
        padding: 1rem;
        bottom: 10px;
        left: 0.5rem;
        transform: none;
        max-width: calc(100% - 1rem);
    }
    
    .privacy-popup p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .privacy-popup-buttons {
        gap: 0.5rem;
    }
    
    .privacy-popup-buttons .btn {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
    
    .policy-page,
    .terms-page,
    .return-page,
    .cookies-page {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .copyright {
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .privacy-links {
        gap: 0.5rem;
        font-size: 0.875rem;
    }
}

.policy-page,
.terms-page,
.return-page,
.cookies-page {
    padding-left: 1rem;
    padding-right: 1rem;
}

