/* public/assets/css/style.css */

:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #ff69b4;
    /* Hot Pink */
    --text-color: #333333;
    --bg-color: #ffffff;
    --card-bg: #f4f4f4;
    --font-main: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #000;
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 12px;
    /* Rounded Apple-style corners */
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    background-color: var(--accent-color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
    border-color: var(--accent-color);
}

/* Forms */
input,
select,
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    background-color: #fff;
    color: #333;
    font-family: var(--font-main);
}

input:focus {
    outline: 2px solid var(--accent-color);
    border-color: var(--accent-color);
}

/* Navbar */
/* Navbar */
nav {
    background-color: #000;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.2);
    border-bottom: 1px solid #333;
}

nav .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

nav a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    transition: color 0.3s, transform 0.2s;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

nav a:hover {
    color: #fff;
    transform: scale(1.1);
}

.brand-logo {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    /* For absolute canvas positioning */
}

.brand-logo img {
    display: block;
    /* Show by default, JS will hide if animation works */
    margin: 0 auto;
    height: auto;
    max-height: 234px;
    width: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}

#logo-canvas {
    display: none;
    /* Hidden by default until animation starts */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
    /* "Load from small to larger" - animation */
    animation: scaleUp 1s ease-out forwards;
}

@keyframes scaleUp {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.brand-logo:hover img {
    transform: scale(1.02);
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    /* Fallback */
    color: #fff;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-top: 0;
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    /* Adjust as needed */
}

/* Photo Carousel */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 0;
    background-color: #000;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 10px;
}

.carousel-slide {
    display: block;
    min-width: 33.333%;
    /* Show 3 images at a time */
    height: 300px;
    object-fit: cover;
    border: 2px solid #fff;
    /* Film strip border look */
    opacity: 0.7;
    transition: opacity 0.3s;
}

.carousel-slide:hover {
    opacity: 1;
}

/* Remove old fade animation */

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: var(--accent-color);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.gallery-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}