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

html {
    width: 100%;
    max-width: 100vw;
    height: auto;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    overscroll-behavior-y: none;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: rgb(255, 195, 50);
    width: 100%;
    min-width: 100%;
    max-width: 100vw;
}

/* Text content constraint */
h1, h2, p, .intro-main, .intro-sub, .video-label, #message {
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
}

/* Header */        
.site-header {
    background-color: white;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 4px solid black;
}

.logo {
    height: 84px;
    width: auto;
}

/* Section Layout */
.section {
    min-height: 400px;
    width: 100%;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    position: relative;
    border-bottom: 4px solid black;
}

.content {
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Background Patterns with Textures */
.section-dots {
    background-color: rgb(58, 175, 163);
    background-image: url('Media/Dots.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
    min-height: 450px;
}

.section-squares {
    background-color: rgb(255, 195, 50);
    background-image: url('Media/Squares.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
    min-height: 500px;
    padding: 50px 20px 20px 20px;
}

.section-stripes {
    background-color: rgb(245, 175, 195);
    background-image: url('Media/Stripes.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
    min-height: 420px;
    padding-top: 30px;
}

.section-sokid {
    background-color: rgb(255, 195, 50);
    background-image: url('Media/Squares.png');
    background-repeat: repeat;
    background-size: auto;
    min-height: 600px;
}

.section-contact {
    background-color: rgb(245, 175, 195);
    background-image: url('Media/Stripes.png');
    background-repeat: repeat;
    background-size: auto;
    min-height: 700px;
}

/* Typography */
h1 {
    color: white;
    margin-bottom: 30px;
    font-size: 3rem;
    font-weight: bold;
}

h2 {
    color: black;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: bold;
}

/* Work Section Header */
.work-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.work-header h2 {
    margin: 0;
    white-space: nowrap;
}

.header-line {
    flex-grow: 1;
    height: 2px;
    background-color: black;
    max-width: 600px;
}

.eyes-icon {
    height: 68px;
    width: auto;
}

/* Contact Section Header */
.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-header h2 {
    margin: 0;
    white-space: nowrap;
}

.contact-line {
    flex-grow: 1;
    height: 2px;
    background-color: black;
    max-width: 600px;
}

.star-icon {
    width: auto;
}

.star-large {
    height: 65px;
    position: relative;
    top: -12px;
}

.star-small {
    height: 40px;
    position: relative;
    right: 30px;
    top: 3px;
}

/* Send Button */
.send-button {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 48px;
    background-color: white;
    color: blue;
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
    text-decoration: none;
    border: 3px solid black;
    border-radius: 3px;
    transition: transform 0.1s ease;
}

.send-button:hover {
    transform: scale(1.05);
}

/* Video Grid */
.video-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
}

.video-container {
    flex: 1 1 0;
    min-width: 0;
    max-width: 280px;
    text-align: center;
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 5px solid black;
    display: block;
}

.video-label {
    margin-top: 50px;
    margin-bottom: 60px;
    color: blue;
    font-size: 0.95rem;
    font-weight: 700;
    background-color: white;
    padding: 6px 12px;
    display: inline-block;
    border: 3px solid black;
    border-radius: 5px;
    text-align: center;
}



p {
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.intro-main {
    color: white;
    font-size: 1.44rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 30px;
}

.intro-sub {
    color: black;
    font-size: 1.44rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}

.reach-out-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.reach-out-link:hover {
    text-decoration: underline;
}

/* Button Styles */
#actionBtn {
    background-color: white;
    color: #1a1a1a;
    border: 3px solid white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#actionBtn:hover {
    background-color: transparent;
    color: white;
}

#message {
    margin-top: 20px;
    font-weight: bold;
    color: white;
    min-height: 24px;
}

/* Footer */
.site-footer {
    background-color: rgb(255, 195, 50);
    padding: 40px 20px;
    text-align: center;
    color: #333;
}

.site-footer p {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: black;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.social-icons a {
    display: inline-block;
    text-decoration: none;
}

.social-icons img {
    height: 30px;
    width: 30px;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
}
