/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121214;
    color: #e1e1e6;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #1a1a1e;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #00adb5;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00adb5;
}

header nav a {
    color: #eeeeee;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

header nav a:hover {
    color: #00adb5;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x400') no-repeat center/cover;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #00adb5;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-btn:hover {
    background-color: #008c95;
}

/* About Section */
.about-section, .prints-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    color: #00adb5;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #1a1a1e;
    padding: 30px;
    border-radius: 8px;
}

.about-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00adb5;
}

/* Prints Grid */
.prints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.print-card {
    background-color: #1a1a1e;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2d2d34;
    transition: transform 0.3s, box-shadow 0.3s;
}

.print-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 173, 181, 0.2);
}

.print-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.print-info {
    padding: 20px;
}

.print-info h3 {
    margin-bottom: 10px;
    color: #fff;
}

.print-info p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
    height: 45px;
    overflow: hidden;
}

.card-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

.btn-download {
    background-color: #00adb5;
    color: #fff;
}

.btn-youtube {
    background-color: #ff0000;
    color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #0d0d0f;
    margin-top: 60px;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Setup */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .hero h1 {
        font-size: 2rem;
    }
}
