
/* —————————————————————————————HOMEPAGE———————————————————————————————————————————*/

:root{
	--darkpink:#E94E77; /** --name: #hexcode;      so now whenever you type something like background—color:var(--darkpink), you don't have to type a hex code**/
	--lighttan:#EEEBE6;
	--rose:#D68189;
	--tan:#C6A49A;
	--bluegreen:#C6E5D9;
	--ivory:#E3CFB4;
}

body{
	font-family: 'Roboto', sans-serif;
	margin:0;
}

img {
	width:100%;
}

h1{
	font-family: 'Aubrey', cursive;
	font-size:48px;
	text-align:center;
}

p{
	font-size:18px;
}


/**header**/
header{
	background-color:white;
	padding:20px 30px;
	overflow:hidden; 
}

#logo-container{ /**SIZE NG LOGO**/
	width:400px;
	float:left;
}



nav ul {
	/**FLEXBOX**/
	/**display:flex;**/
	
	/**FLOAT**/
	float:right;
	padding-right:30px;
}

header nav ul li {
	list-style:none;
	margin-left:20px;
	
	/**FLOAT**/
	display: inline-block;
}

header nav ul li a {
	background-color:var(--rose);
	text-decoration:none;
	color:white;
	padding:10px 20px; /**PADDING NG BOXES**/
	border-radius:100px; /**HOW ROUND CORNER NG NAV BUTTONS;**/
	position:relative;
	top:0;
	transition:top .3s; /**ANIMATION TIME, better yung may decimal like .3, .5, masyado matagal 1 second ngl**/
}

header nav ul li a:hover{  /** hover is a pseudoclass, this makes the animation, paired with its reference tag */
	background-color:var(--darkpink);
	top:-5px;   /**SO THIS MAKES THE HOVER ANIMATION, negative is up? positive is down for some reason;**/
}

/****sections****/
/**NAKA NAME BASE SA MGA DIV CLASS, TO TARGET SPECIFIC SECTIONS;**/



/** ——————————————————————————————CONTACT PAGE ——————————————————————————————————————————**/



.contact-wrapper {
    background-color: red;
}


.contact-wrapper {
    display: flex;
    flex-direction: row;        /* left to right */
    justify-content: space-between;
    gap: 80px;
    padding: 80px 10%;
    background: #f2f2f2;
}


/* Left Column */
.contact-left {
    flex: 2;
}

/* Right Column */
.contact-right {
    flex: 1;
}

/* Headings */
.contact-left h2,
.contact-right h2 {
    margin-bottom: 30px;
    font-weight: 700;
}

/* Form Styling */
.contact-left form {
    display: flex;
    flex-direction: column;
}

.contact-left label {
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-left input,
.contact-left select,
.contact-left textarea {
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: #e9e6e4;
    font-size: 16px;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Radio & Checkbox Groups */

.skill-choice {
    padding-top: 50px;
}

.radio-group,
.checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


.checkbox-group {
    display: flex;
    flex-direction: column;   /* stack vertically */
    gap: 5px;                /* spacing between each checkbox */
    margin-bottom: 2px;      /* space from next element */
    padding-left: 50px;
}


/* container for each row with label + field */
.form-container {
    display: flex;
    align-items: flex-start;   /* align label and field at top */
    margin-bottom: 20px;       /* vertical spacing to next row */
    padding-top: 10px;
}

/* label styling */
.form-container label:first-child {
    flex: 0 0 5px;           /* fixed width for label */
    font-weight: 500;
}

/* checkbox group as two-column layout */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));  /* 2 columns */
}

/* checkbox + text alignment */
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 4px;               /* space between box and text */
    font-size: 16px;
}


/* Button */
.btn-send {
    margin-top: 30px;
    width: 140px;
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: #e64c74;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.btn-send:hover {
    background-color: var(--lighttan);
	color: var(--darkpink);
	outline: 2px solid var(--darkpink); /* HOVER ANIMATION: OUTLINE EFFECT, PARAMETERS: Width, Style, Color */
}

/* Social Icons */
.socmed-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.socmed-icons img {
    width: 30px;
}



/*——————————————————— footer ————————————————*****/
footer{
	background-color:var(--tan);
	padding:10px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	
}

footer img{
	width:200px;
	margin-right:10px;
}

footer p{
	font-size:12px;
	margin-left:auto;
}









\