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

/* Basic Styling */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #FFFFFF;
    border-bottom: 3px solid #000000;
    padding: 15px;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

nav a {
    color: #000000;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
}

nav a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    min-height: 100vh;
    padding: 80px 20px 40px;
    border-bottom: 5px solid #000000;
}

h1, h2 {
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 30px;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 40px;
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px;
}

/* Home Section */
#home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tagline {
    font-family: "Courier New", monospace;
    font-size: 20px;
    margin-top: 10px;
}

/* Sounds Section */
.sounds-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Sound Categories Navigation */
.sound-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
}

.category-btn {
    background: none;
    border: 3px solid #000000;
    padding: 10px 20px;
    margin: 0 10px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-btn[data-category="playlists"] {
    border-color: #00BFFF; /* Light blue */
}

.category-btn[data-category="ambient"] {
    border-color: #E6B800; /* Mustard yellow */
}

.category-btn[data-category="brandnew"] {
    border-color: #66CDAA; /* Mint green */
}

.category-btn:hover {
    transform: translateY(-3px);
}

.category-btn[data-category="playlists"]:hover {
    background-color: rgba(0, 191, 255, 0.2);
}

.category-btn[data-category="ambient"]:hover {
    background-color: rgba(230, 184, 0, 0.2);
}

.category-btn[data-category="brandnew"]:hover {
    background-color: rgba(102, 205, 170, 0.2);
}

.category-btn.active[data-category="playlists"] {
    background-color: #00BFFF;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

.category-btn.active[data-category="ambient"] {
    background-color: #E6B800;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(230, 184, 0, 0.5);
}

.category-btn.active[data-category="brandnew"] {
    background-color: #66CDAA;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(102, 205, 170, 0.5);
}

/* Sound Category Content */
.sound-category-content {
    display: none;
    padding: 20px;
    border: 5px solid #000000;
    position: relative;
    overflow: hidden;
}

.sound-category-content.active {
    display: block;
}

/* Brutalist color borders */
#playlists {
    border-color: #00BFFF; /* Light blue */
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

#ambient {
    border-color: #E6B800; /* Mustard yellow */
    box-shadow: 0 0 15px rgba(230, 184, 0, 0.5);
}

#brandnew {
    border-color: #66CDAA; /* Mint green */
    box-shadow: 0 0 15px rgba(102, 205, 170, 0.5);
}

/* Playlists Category */
.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
}

.playlist-item {
    border: 3px solid #00BFFF; /* Light blue */
    padding: 15px;
    transition: all 0.3s ease;
    background-color: rgba(0, 191, 255, 0.05);
}

.playlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.playlist-title {
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

/* Ambient Category */
.ambient-players {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
    margin-bottom: 30px;
}

.ambient-player {
    border: 3px solid #E6B800; /* Mustard yellow */
    padding: 15px;
    transition: all 0.3s ease;
    background-color: rgba(230, 184, 0, 0.05);
}

.ambient-player:hover {
    box-shadow: 0 5px 15px rgba(230, 184, 0, 0.3);
}

.ambient-player h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}

.audio-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.audio-player iframe {
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Vangelis Special Styling */
.vangelis-container {
    position: relative;
}

.vangelis-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.vangelis-tab {
    background: none;
    border: 2px solid #E6B800; /* Mustard yellow */
    padding: 8px 15px;
    margin: 0 5px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000000;
}

.vangelis-tab:hover {
    background-color: rgba(230, 184, 0, 0.2);
    color: #000000;
}

.vangelis-tab.active {
    background-color: #E6B800; /* Mustard yellow */
    color: #FFFFFF;
    box-shadow: 0 0 10px rgba(230, 184, 0, 0.5);
}

.vangelis-tracks {
    position: relative;
}

.vangelis-track {
    display: none;
    transition: opacity 0.5s ease;
}

.vangelis-track.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ambient-mixer {
    border: 3px solid #E6B800; /* Mustard yellow */
    padding: 20px;
    text-align: center;
    background-color: rgba(230, 184, 0, 0.05);
    box-shadow: 0 5px 15px rgba(230, 184, 0, 0.2);
}

.ambient-mixer h3 {
    margin-bottom: 10px;
}

/* Brand New Category */
.brandnew-container {
    display: flex;
    flex-direction: column;
}

.brandnew-container h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
}

.brandnew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
}

.brandnew-item {
    border: 3px solid #66CDAA; /* Mint green */
    padding: 15px;
    transition: all 0.3s ease;
    background-color: rgba(102, 205, 170, 0.05);
}

.brandnew-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(102, 205, 170, 0.3);
}

/* Photos Section */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-grid img {
    width: 100%;
    height: auto;
    border: 2px solid #000000;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        margin: 5px 0;
    }

    h1 {
        font-size: 30px;
    }

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

.grid-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.grid-image:hover {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-modal {
    position: absolute;
    right: 35px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #bbb;
}

/* Writings Section */
.writings-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.writings-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.writing-link {
    display: block;
    padding: 20px;
    background-color: #FFFFFF;
    border: 3px solid #000000;
    color: #000000;
    text-decoration: none;
    font-family: "Courier New", monospace;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.writing-link:hover {
    background-color: #000000;
    color: #FFFFFF;
    transform: translateX(10px);
}

/* Responsive Design for Writings */
@media (max-width: 768px) {
    .writings-container {
        padding: 10px;
    }
    
    .writing-link {
        padding: 15px;
        font-size: 16px;
    }
}
