:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --transition-speed: 0.3s;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

.text-xs {
    font-size: 0.6rem;
    margin-left: 2px;
    vertical-align: middle;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 95vh;
    background-image: url('img/banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-pill);
    padding: 18px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.logo {
    font-family: 'Outfit', serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.nav a:hover {
    color: var(--text-light);
}

.actions {
    display: flex;
    gap: 25px;
    align-items: center;
}

.actions a {
    font-size: 1.1rem;
    color: var(--primary-color);
    position: relative;
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 8px 20px;
    border-radius: var(--border-radius-pill);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color) !important;
}

/* Hero Content */
.hero {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    flex-grow: 1;
    animation: fadeIn 1.5s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    color: var(--secondary-color);
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.1);
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-weight: 300;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: var(--border-radius-pill);
    font-weight: 500;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.slider-btn {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-speed) ease, transform 0.2s ease;
    padding: 20px;
}

.slider-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Features Bar */
.features {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 35px 0;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.feature i {
    font-size: 1.4rem;
}

/* About Section */
.about-section {
    padding: 100px 40px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 3px;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 15px;
}

/* Gallery Section */
.gallery-section {
    padding: 40px 40px 100px;
    max-width: 1600px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--secondary-color);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Footer Section */
.site-footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 80px 40px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: #999;
    font-weight: 300;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #999;
    margin-bottom: 12px;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-newsletter p {
    color: #999;
    margin-bottom: 20px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    flex-grow: 1;
    font-family: inherit;
    outline: none;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #999;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .nav { display: none; }
    .features { gap: 40px; padding: 30px 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .header { padding: 15px 30px; }
    .hero-wrapper { padding: 20px; min-height: 80vh; }
    .hero h1 { font-size: 2.5rem; }
    .features { flex-direction: column; align-items: center; gap: 20px; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
    .about-section { padding: 60px 20px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
