/*
 * Beautiful Design Inspired by HTML5UP Ethereal
 * With normal vertical scrolling
 */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Hero Panel - Beautiful gradient background */
.hero-panel {
    background-image: url("../images/overlay.png"), linear-gradient(45deg, #4C061D 20%, #D17A22 50%, #B4C292 80%);
    background-size: 128px 128px, auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.3em;
    font-weight: 300;
    margin-bottom: 10px;
    opacity: 0.95;
}

.tagline {
    font-size: 1.1em;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Panel Sections with beautiful gradients */
.panel {
    padding: 80px 20px;
    position: relative;
}

.panel.color1 {
    background-image: url("../images/overlay.png"), linear-gradient(45deg, rgba(76, 6, 29, 0.3) 25%, rgba(209, 122, 34, 0.3) 50%, rgba(180, 194, 146, 0.3));
    background-size: 128px 128px, auto;
    background-color: #4C061D;
    color: white;
}

.panel.color2 {
    background-image: url("../images/overlay.png"), linear-gradient(45deg, rgba(76, 6, 29, 0.2) 25%, rgba(209, 122, 34, 0.3) 50%, rgba(180, 194, 146, 0.3));
    background-size: 128px 128px, auto;
    background-color: #D17A22;
    color: white;
}

.panel.color3 {
    background-image: url("../images/overlay.png"), linear-gradient(45deg, rgba(209, 122, 34, 0.25) 25%, rgba(180, 194, 146, 0.3) 50%, rgba(115, 111, 78, 0.25));
    background-size: 128px 128px, auto;
    background-color: #B4C292;
    color: #3B3923;
}

.panel.color4 {
    background-image: url("../images/overlay.png"), linear-gradient(45deg, rgba(115, 111, 78, 0.3) 25%, rgba(59, 57, 35, 0.4) 50%, rgba(76, 6, 29, 0.3));
    background-size: 128px 128px, auto;
    background-color: #736F4E;
    color: white;
}

.panel-content {
    max-width: 1200px;
    margin: 0 auto;
}

.panel-header {
    text-align: center;
    margin-bottom: 50px;
}

.panel-icon {
    font-size: 3em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.panel-header h2 {
    font-size: 2.5em;
    font-weight: 400;
    margin-bottom: 15px;
}

.panel-description {
    font-size: 1.2em;
    font-weight: 300;
    opacity: 0.9;
}

/* Photo Gallery Preview */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-preview img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-preview img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.project-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.project-card h3 {
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-card h3 i {
    opacity: 0.8;
}

.project-card p {
    font-weight: 300;
    margin-bottom: 15px;
    opacity: 0.95;
}

.photo-count {
    font-size: 1.1em;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin: 10px 0;
}

/* Progress Bar */
.progress-bar {
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    height: 24px;
    margin: 15px 0;
    overflow: hidden;
}

.progress {
    background: linear-gradient(90deg, #736F4E, #B4C292);
    color: white;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 0.85em;
    border-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.15);
    color: inherit;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.3);
}

.button:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.button.primary {
    background: rgba(255,255,255,0.95);
    color: #4C061D;
}

.button.primary:hover {
    background: white;
}

.button.small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.panel-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Creative Grid */
.creative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.creative-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.creative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.creative-card h3 {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.creative-card p {
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Crypto Content */
.crypto-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.crypto-content p {
    font-size: 1.1em;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content p {
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .subtitle {
        font-size: 1.1em;
    }

    .panel {
        padding: 50px 15px;
    }

    .panel-header h2 {
        font-size: 2em;
    }

    .gallery-preview {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .gallery-preview img {
        height: 180px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .creative-grid {
        grid-template-columns: 1fr;
    }

    .panel-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
        justify-content: center;
    }
}
