/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #333;
    line-height: 1.6;
    font-size: 18px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.fade-out {
    opacity: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background-color: #5b5a5a38;
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    position: absolute;
    left: 20px;
}

.logo img {
    width: 210px;
}

nav ul {
    color: white;
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li {
    font-size: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 30px;
    position: relative;
    font-family: 'Lato', sans-serif;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav ul li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Main Content Styles */
main {
    margin: 50px 0;
    background-color: rgba(0, 0, 0, 0.365);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

h2, summary{
    font-size: 18px;
    margin-bottom: 20px;
    color: #34d85b;
    border-bottom: 2px solid #28a745;
    padding-bottom: 10px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ffffff;
}

li {
    color:rgb(189, 189, 189);
}

li strong{
    color: rgb(214, 213, 213);
}

section {
    margin-bottom: 40px;
}

section:last-child {
    margin-bottom: 0;
}

details {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
  }
  
  details[open] {
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
  }
  
  summary {
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    outline: none;
    user-select: none;
  }

.deramedia{
    max-height: 350px;
    margin-bottom: 40px;
}

.kickhubimg{
    min-height: 360px;
    max-height: 600px;
}

.media-row, .media-row-ender{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .media-row img,
  .media-row video {
    width: calc(33% - 15rem);
    max-width: 100%;
    border-radius: 6px;
    object-fit: cover;
  }
  .media-row-ender img, .media-row-ender video{
    width: calc(33% - 12rem);
    max-width: 100%;
    border-radius: 6px;
    object-fit: cover;
  }


/* Contact Form Styles - Compact and Horizontal Layout */
form {
    background-color: #00000040;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 10px;
    align-items: start;
}

label {
    font-weight: bold;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="phone"],
textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    background-color: #fff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 8px;
    width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus,
textarea:focus {
    border: 1px solid #34d85b;
    box-shadow: 0 0 6px rgba(52, 216, 91, 0.4);
    outline: none;
}

textarea {
    resize: none;
    height: 210px;
    grid-column: 2 / 3; /* Place textarea in the right column */
}

input[type="submit"] {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: white;
    padding: 10px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    grid-column: span 2; /* Full width of both columns */
    margin-top: 15px;
}

input[type="submit"]:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #6a11cb, #06ff6a,#6a11cb);
}


/* Specific left-side layout for name, email, and phone */
.form-left {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-left input {
    width: 100%;
}

/* Specific right-side layout for message field */
.form-right {
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Responsive Layout for smaller screens */
@media (max-width: 768px) {
    form {
        grid-template-columns: 1fr; /* Single column on small screens */
    }

    textarea {
        grid-column: span 1;
    }

    input[type="submit"] {
        grid-column: span 1;
    }
}


/* Footer Styles */
footer {
    background-color: #ffffff38;
    color: white;
    padding: 30px 0;
    text-align: center;
    font-size: 1rem;
    margin-top: 50px;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #c3e6cb;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    header h1 {
        font-size: 3rem;
    }

    nav ul {
        flex-direction: row;
        gap: 15px;
    }

    main {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    nav ul {
        flex-direction: row;
        gap: 10px;
    }

    main {
        padding: 25px;
        font-size: 1.1rem;
    }
}

/* Disclaimer Styles */
.disclaimer {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 15px;
}

/* Carousel Styles */
.carousel {
    background-color: rgb(68, 68, 68);
    position: relative;
    width: 600px;
    height: 500px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    border: 3px ridge #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: relative;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.carousel-images img {
    width: 100%;
    display: none;
}

.carousel-images img.active {
    display: block;
}

.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
}

.carousel .prev {
    left: 10px;
}

.carousel .next {
    right: 10px;
}

.carousel button:hover {
    background-color: rgb(63, 63, 63);
}

/* Responsive Styles for Smaller Screens */
@media (max-width: 600px) {
    form {
        gap: 10px;
        padding: 20px;
    }
    
    input[type="submit"] {
        padding: 12px 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}




/* Media Query for iPhone 15 Pro */
@media only screen and (max-width: 1179px) and (max-height: 2556px) {
    body {
        font-size: 16px;
    }

    /* Header Styles */
    header {
        background-color: #5b5a5a38;
        color: white;
        padding: 10px 0;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo-container {
        margin-bottom: 10px; /* Adjusted margin to prevent overlap */
    }

    .logo {
        display: flex;
        justify-content: center;
        padding: 45px;
        padding-top: 10px;
        margin-top: 10px;
        width: 100%;
    }

    .logo img {
        height: 50px;
        width: 210px; /* Adjusted for mobile view */
    }

    /* Navigation Styles */
    nav ul {
        list-style-type: none;
        display: flex;
        justify-content: center;
        gap: 10px; /* Reduced gap to fit tighter screen width */
        margin: 0;
        padding: 0px 20px; /* Added padding to the sides */
        padding-right: 5px;
        padding-top: 30px;
        flex-wrap: nowrap;
        overflow-x: auto; /* Ensure all items are visible */
    }

    nav ul li {
        font-size: 16px; /* Adjust font size for mobile */
    }

    nav ul li a {
        color: white;
        text-decoration: none;
        padding: 8px 20px; /* Reduced padding for better fit */
        font-family: 'Lato', sans-serif;
        font-size: 1rem;
        border-radius: 6px;
        position: relative;
    }

    nav ul li a::before {
        content: '';
        position: absolute;
        bottom: 0; /* Fixed position at the bottom */
        left: 0;
        width: 100%;
        height: 2px;
        background-color: white;
        transform: scaleX(0); /* Start with zero width */
        transform-origin: left;
        transition: transform 0.3s ease; /* Smooth transition */
    }

    nav ul li a:hover::before {
        transform: scaleX(1); /* Expand on hover */
    }

    /* Main Content */
    .container {
        padding: 15px;
    }

    main {
        margin: 20px 0;
        padding: 20px;
        font-size: 1rem;
    }

    h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* Form Styles */
    form {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    textarea {
        height: 205px;
        width: 170px;
    }

    input[type="submit"] {
        padding: 12px 0;
        font-size: 1rem;
    }

    /* Footer */
    footer {
        padding: 20px 0;
        font-size: 0.9rem;
    }

    /* Carousel Styles */
    .carousel {
        width: 100%;
        height: 300px;
    }

    .carousel-images img {
        height: auto;
        width: 100%;
    }

    /* Images*/
    img {
        max-width: 330px;
    }
    .deramedia{
        min-width: 330px;
    }

    .kickhubimg{
        min-width: 330px;
    }
}

